diff options
author | Remi Collet <fedora@famillecollet.com> | 2014-09-04 17:13:52 +0200 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2014-09-04 17:13:52 +0200 |
commit | 628026478222adad3010277899dabd4227306b48 (patch) | |
tree | ac01bf10b9b40abf5cadd524d0203e2b92a76bc3 |
php-phalcon: 1.3.2 - new package
-rw-r--r-- | 2772.patch | 322 | ||||
-rw-r--r-- | 2774.patch | 228 | ||||
-rw-r--r-- | 2775.patch | 43 | ||||
-rw-r--r-- | Makefile | 9 | ||||
-rw-r--r-- | REFLECTION | 37193 | ||||
-rw-r--r-- | php-phalcon.spec | 223 |
6 files changed, 38018 insertions, 0 deletions
diff --git a/2772.patch b/2772.patch new file mode 100644 index 0000000..fc9a3e5 --- /dev/null +++ b/2772.patch @@ -0,0 +1,322 @@ +From f3e58e7ff4746a0607aae182c46578ac349aa73f Mon Sep 17 00:00:00 2001 +From: Remi Collet <fedora@famillecollet.com> +Date: Thu, 4 Sep 2014 13:44:31 +0200 +Subject: [PATCH] Fix segfault with PHP 5.6 and interned strings + +Signed-off-by: Remi Collet <fedora@famillecollet.com> +--- + ext/kernel/concat.c | 52 +++++++++++++++++++++++------------------------ + ext/kernel/main.h | 4 ++++ + ext/kernel/operators.c | 4 ++-- + ext/tests/issue-1277.phpt | 6 +++--- + ext/tests/issue-1455.phpt | 2 +- + 5 files changed, 36 insertions(+), 32 deletions(-) + +diff --git a/ext/kernel/concat.c b/ext/kernel/concat.c +index 5ea4c20..6fa82ab 100644 +--- a/ext/kernel/concat.c ++++ b/ext/kernel/concat.c +@@ -47,7 +47,7 @@ void phalcon_concat_sv(zval **result, const char *op1, zend_uint op1_len, zval * + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -94,7 +94,7 @@ void phalcon_concat_svs(zval **result, const char *op1, zend_uint op1_len, zval + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -149,7 +149,7 @@ void phalcon_concat_svsv(zval **result, const char *op1, zend_uint op1_len, zval + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -209,7 +209,7 @@ void phalcon_concat_svsvs(zval **result, const char *op1, zend_uint op1_len, zva + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -277,7 +277,7 @@ void phalcon_concat_svsvsv(zval **result, const char *op1, zend_uint op1_len, zv + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -350,7 +350,7 @@ void phalcon_concat_svsvsvs(zval **result, const char *op1, zend_uint op1_len, z + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -431,7 +431,7 @@ void phalcon_concat_svsvsvsvs(zval **result, const char *op1, zend_uint op1_len, + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -512,7 +512,7 @@ void phalcon_concat_svsvv(zval **result, const char *op1, zend_uint op1_len, zva + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -577,7 +577,7 @@ void phalcon_concat_svv(zval **result, const char *op1, zend_uint op1_len, zval + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -636,7 +636,7 @@ void phalcon_concat_svvs(zval **result, const char *op1, zend_uint op1_len, zval + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -689,7 +689,7 @@ void phalcon_concat_vs(zval **result, zval *op1, const char *op2, zend_uint op2_ + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -743,7 +743,7 @@ void phalcon_concat_vsv(zval **result, zval *op1, const char *op2, zend_uint op2 + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -802,7 +802,7 @@ void phalcon_concat_vsvs(zval **result, zval *op1, const char *op2, zend_uint op + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -869,7 +869,7 @@ void phalcon_concat_vsvsv(zval **result, zval *op1, const char *op2, zend_uint o + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -941,7 +941,7 @@ void phalcon_concat_vsvsvs(zval **result, zval *op1, const char *op2, zend_uint + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -1021,7 +1021,7 @@ void phalcon_concat_vsvsvsv(zval **result, zval *op1, const char *op2, zend_uint + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -1099,7 +1099,7 @@ void phalcon_concat_vsvv(zval **result, zval *op1, const char *op2, zend_uint op + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -1177,7 +1177,7 @@ void phalcon_concat_vsvvv(zval **result, zval *op1, const char *op2, zend_uint o + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -1246,7 +1246,7 @@ void phalcon_concat_vv(zval **result, zval *op1, zval *op2, int self_var TSRMLS_ + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -1304,7 +1304,7 @@ void phalcon_concat_vvs(zval **result, zval *op1, zval *op2, const char *op3, ze + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -1370,7 +1370,7 @@ void phalcon_concat_vvsv(zval **result, zval *op1, zval *op2, const char *op3, z + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -1441,7 +1441,7 @@ void phalcon_concat_vvv(zval **result, zval *op1, zval *op2, zval *op3, int self + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -1518,7 +1518,7 @@ void phalcon_concat_vvvsv(zval **result, zval *op1, zval *op2, zval *op3, const + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -1601,7 +1601,7 @@ void phalcon_concat_vvvv(zval **result, zval *op1, zval *op2, zval *op3, zval *o + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -1697,7 +1697,7 @@ void phalcon_concat_vvvvsvv(zval **result, zval *op1, zval *op2, zval *op3, zval + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +@@ -1797,7 +1797,7 @@ void phalcon_concat_vvvvv(zval **result, zval *op1, zval *op2, zval *op3, zval * + + offset = Z_STRLEN_PP(result); + length += offset; +- Z_STRVAL_PP(result) = (char *) erealloc(Z_STRVAL_PP(result), length + 1); ++ Z_STRVAL_PP(result) = (char *) str_erealloc(Z_STRVAL_PP(result), length + 1); + + } else { + Z_STRVAL_PP(result) = (char *) emalloc(length + 1); +diff --git a/ext/kernel/main.h b/ext/kernel/main.h +index 963987c..9fbf2a3 100644 +--- a/ext/kernel/main.h ++++ b/ext/kernel/main.h +@@ -45,6 +45,10 @@ + #define ISL(str) (phalcon_interned_##str), (sizeof(#str)-1) + #define ISS(str) (phalcon_interned_##str), (sizeof(#str)) + ++/* str_erealloc is PHP 5.6 only */ ++#ifndef str_erealloc ++#define str_erealloc erealloc ++#endif + + /* Startup functions */ + void php_phalcon_init_globals(zend_phalcon_globals *phalcon_globals TSRMLS_DC); +diff --git a/ext/kernel/operators.c b/ext/kernel/operators.c +index 7d37d76..0b46284 100644 +--- a/ext/kernel/operators.c ++++ b/ext/kernel/operators.c +@@ -82,7 +82,7 @@ void phalcon_concat_self(zval **left, zval *right TSRMLS_DC){ + } + + length = Z_STRLEN_PP(left) + Z_STRLEN_P(right); +- Z_STRVAL_PP(left) = erealloc(Z_STRVAL_PP(left), length + 1); ++ Z_STRVAL_PP(left) = str_erealloc(Z_STRVAL_PP(left), length + 1); + + memcpy(Z_STRVAL_PP(left) + Z_STRLEN_PP(left), Z_STRVAL_P(right), Z_STRLEN_P(right)); + Z_STRVAL_PP(left)[length] = 0; +@@ -126,7 +126,7 @@ void phalcon_concat_self_str(zval **left, const char *right, int right_length TS + } + + length = Z_STRLEN_PP(left) + right_length; +- Z_STRVAL_PP(left) = erealloc(Z_STRVAL_PP(left), length + 1); ++ Z_STRVAL_PP(left) = str_erealloc(Z_STRVAL_PP(left), length + 1); + + memcpy(Z_STRVAL_PP(left) + Z_STRLEN_PP(left), right, right_length); + Z_STRVAL_PP(left)[length] = 0; +diff --git a/ext/tests/issue-1277.phpt b/ext/tests/issue-1277.phpt +index d2a530b..506c9a3 100644 +--- a/ext/tests/issue-1277.phpt ++++ b/ext/tests/issue-1277.phpt +@@ -10,12 +10,12 @@ $c2 = clone $c1; + var_dump($c1); + var_dump($c2); + ?> +---EXPECT-- +-object(Phalcon\Config)#1 (1) { ++--EXPECTF-- ++object(Phalcon\Config)#%d (1) { + ["test"]=> + int(1) + } +-object(Phalcon\Config)#2 (1) { ++object(Phalcon\Config)#%d (1) { + ["test"]=> + int(1) + } +diff --git a/ext/tests/issue-1455.phpt b/ext/tests/issue-1455.phpt +index f29f047..d82bc85 100644 +--- a/ext/tests/issue-1455.phpt ++++ b/ext/tests/issue-1455.phpt +@@ -5,7 +5,7 @@ report_memleaks=1 + --SKIPIF-- + <?php + include('skipif.inc'); +-if (!function_exists('apc_store')) { ++if (!class_exists('APCIterator', false)) { + die('skip APC or APCu is required'); + } + ?> diff --git a/2774.patch b/2774.patch new file mode 100644 index 0000000..c3c7a08 --- /dev/null +++ b/2774.patch @@ -0,0 +1,228 @@ +From 379c258e03959a8a1482d8cb498b67b8de7f0bc0 Mon Sep 17 00:00:00 2001 +From: Remi Collet <fedora@famillecollet.com> +Date: Thu, 4 Sep 2014 15:02:31 +0200 +Subject: [PATCH] add --without-non-free build option to disable non-free + minifiers + +--- + ext/assets/filters/cssmin.c | 4 ++++ + ext/assets/filters/jsmin.c | 4 ++++ + ext/assets/filters/nocssminifier.c | 31 +++++++++++++++++++++++++++++++ + ext/assets/filters/nocssminifier.h | 27 +++++++++++++++++++++++++++ + ext/assets/filters/nojsminifier.c | 31 +++++++++++++++++++++++++++++++ + ext/assets/filters/nojsminifier.h | 27 +++++++++++++++++++++++++++ + ext/config.m4 | 13 +++++++++++-- + 7 files changed, 135 insertions(+), 2 deletions(-) + create mode 100644 ext/assets/filters/nocssminifier.c + create mode 100644 ext/assets/filters/nocssminifier.h + create mode 100644 ext/assets/filters/nojsminifier.c + create mode 100644 ext/assets/filters/nojsminifier.h + +diff --git a/ext/assets/filters/cssmin.c b/ext/assets/filters/cssmin.c +index 3cfc89e..b490ae4 100644 +--- a/ext/assets/filters/cssmin.c ++++ b/ext/assets/filters/cssmin.c +@@ -18,7 +18,11 @@ + */ + + #include "assets/filters/cssmin.h" ++#ifdef PHALCON_NON_FREE + #include "assets/filters/cssminifier.h" ++#else ++#include "assets/filters/nocssminifier.h" ++#endif + #include "assets/filterinterface.h" + + #include "kernel/main.h" +diff --git a/ext/assets/filters/jsmin.c b/ext/assets/filters/jsmin.c +index 26197de..2b2791c 100644 +--- a/ext/assets/filters/jsmin.c ++++ b/ext/assets/filters/jsmin.c +@@ -18,7 +18,11 @@ + */ + + #include "assets/filters/jsmin.h" ++#ifdef PHALCON_NON_FREE + #include "assets/filters/jsminifier.h" ++#else ++#include "assets/filters/nojsminifier.h" ++#endif + #include "assets/filterinterface.h" + + #include "kernel/main.h" +diff --git a/ext/assets/filters/nocssminifier.c b/ext/assets/filters/nocssminifier.c +new file mode 100644 +index 0000000..efebc82 +--- /dev/null ++++ b/ext/assets/filters/nocssminifier.c +@@ -0,0 +1,31 @@ ++/* ++ +------------------------------------------------------------------------+ ++ | Phalcon Framework | ++ +------------------------------------------------------------------------+ ++ | Copyright (c) 2011-2014 Phalcon Team (http://www.phalconphp.com) | ++ +------------------------------------------------------------------------+ ++ | This source file is subject to the New BSD License that is bundled | ++ | with this package in the file docs/LICENSE.txt. | ++ | | ++ | If you did not receive a copy of the license and are unable to | ++ | obtain it through the world-wide-web, please send an email | ++ | to license@phalconphp.com so we can send you a copy immediately. | ++ +------------------------------------------------------------------------+ ++ | Authors: Remi Collet <remi@famillecollet.com> | ++ +------------------------------------------------------------------------+ ++*/ ++ ++/* placeholder for non-free csssminifier.c */ ++ ++ ++#include "php_phalcon.h" ++ ++#include "assets/filters/nocssminifier.h" ++#include "assets/exception.h" ++#include "kernel/exception.h" ++ ++int phalcon_cssmin(zval *return_value, zval *style TSRMLS_DC) { ++ ++ PHALCON_THROW_EXCEPTION_STRW(phalcon_assets_exception_ce, "Non-free csssminifier not available"); ++ return FAILURE; ++} +diff --git a/ext/assets/filters/nocssminifier.h b/ext/assets/filters/nocssminifier.h +new file mode 100644 +index 0000000..6ac8b07 +--- /dev/null ++++ b/ext/assets/filters/nocssminifier.h +@@ -0,0 +1,27 @@ ++/* ++ +------------------------------------------------------------------------+ ++ | Phalcon Framework | ++ +------------------------------------------------------------------------+ ++ | Copyright (c) 2011-2014 Phalcon Team (http://www.phalconphp.com) | ++ +------------------------------------------------------------------------+ ++ | This source file is subject to the New BSD License that is bundled | ++ | with this package in the file docs/LICENSE.txt. | ++ | | ++ | If you did not receive a copy of the license and are unable to | ++ | obtain it through the world-wide-web, please send an email | ++ | to license@phalconphp.com so we can send you a copy immediately. | ++ +------------------------------------------------------------------------+ ++ | Authors: Remi Collet <remi@famillecollet.com> | ++ +------------------------------------------------------------------------+ ++*/ ++ ++/* placeholder for non-free csssminifier.h */ ++ ++#ifndef PHALCON_ASSETS_FILTERS_CSSMINIFIER_H ++#define PHALCON_ASSETS_FILTERS_CSSMINIFIER_H ++ ++#include <Zend/zend.h> ++ ++int phalcon_cssmin(zval *return_value, zval *style TSRMLS_DC); ++ ++#endif /* PHALCON_ASSETS_FILTERS_CSSMINIFIER_H */ +diff --git a/ext/assets/filters/nojsminifier.c b/ext/assets/filters/nojsminifier.c +new file mode 100644 +index 0000000..885035b +--- /dev/null ++++ b/ext/assets/filters/nojsminifier.c +@@ -0,0 +1,31 @@ ++/* ++ +------------------------------------------------------------------------+ ++ | Phalcon Framework | ++ +------------------------------------------------------------------------+ ++ | Copyright (c) 2011-2014 Phalcon Team (http://www.phalconphp.com) | ++ +------------------------------------------------------------------------+ ++ | This source file is subject to the New BSD License that is bundled | ++ | with this package in the file docs/LICENSE.txt. | ++ | | ++ | If you did not receive a copy of the license and are unable to | ++ | obtain it through the world-wide-web, please send an email | ++ | to license@phalconphp.com so we can send you a copy immediately. | ++ +------------------------------------------------------------------------+ ++ | Authors: Remi Collet <remi@famillecollet.com> | ++ +------------------------------------------------------------------------+ ++*/ ++ ++/* placeholder for non-free jsminifier.c */ ++ ++ ++#include "php_phalcon.h" ++ ++#include "assets/filters/nojsminifier.h" ++#include "assets/exception.h" ++#include "kernel/exception.h" ++ ++int phalcon_jsmin(zval *return_value, zval *script TSRMLS_DC) { ++ ++ PHALCON_THROW_EXCEPTION_STRW(phalcon_assets_exception_ce, "Non-free jsminifier not available"); ++ return FAILURE; ++} +diff --git a/ext/assets/filters/nojsminifier.h b/ext/assets/filters/nojsminifier.h +new file mode 100644 +index 0000000..95829cc +--- /dev/null ++++ b/ext/assets/filters/nojsminifier.h +@@ -0,0 +1,27 @@ ++/* ++ +------------------------------------------------------------------------+ ++ | Phalcon Framework | ++ +------------------------------------------------------------------------+ ++ | Copyright (c) 2011-2014 Phalcon Team (http://www.phalconphp.com) | ++ +------------------------------------------------------------------------+ ++ | This source file is subject to the New BSD License that is bundled | ++ | with this package in the file docs/LICENSE.txt. | ++ | | ++ | If you did not receive a copy of the license and are unable to | ++ | obtain it through the world-wide-web, please send an email | ++ | to license@phalconphp.com so we can send you a copy immediately. | ++ +------------------------------------------------------------------------+ ++ | Authors: Remi Collet <remi@famillecollet.com> | ++ +------------------------------------------------------------------------+ ++*/ ++ ++/* placeholder for non-free jsminifier.h */ ++ ++#ifndef PHALCON_ASSETS_FILTERS_JSMINIFIER_H ++#define PHALCON_ASSETS_FILTERS_JSMINIFIER_H ++ ++#include <Zend/zend.h> ++ ++int phalcon_jsmin(zval *return_value, zval *script TSRMLS_DC); ++ ++#endif /* PHALCON_ASSETS_FILTERS_JSMINIFIER_H */ +diff --git a/ext/config.m4 b/ext/config.m4 +index 88f8e4c..2df6dcd 100644 +--- a/ext/config.m4 ++++ b/ext/config.m4 +@@ -1,4 +1,5 @@ + PHP_ARG_ENABLE(phalcon, whether to enable phalcon framework, [ --enable-phalcon Enable phalcon framework]) ++PHP_ARG_WITH(non-free, wheter to enable non-free css and js minifier, [ --without-non-free Disable non-free minifiers], yes, no) + + if test "$PHP_PHALCON" = "yes"; then + AC_DEFINE(HAVE_PHALCON, 1, [Whether you have Phalcon Framework]) +@@ -340,8 +341,6 @@ validation/validator/inclusionin.c \ + validation/validator/stringlength.c \ + validation/validator/url.c \ + validation/validator.c \ +-assets/filters/jsminifier.c \ +-assets/filters/cssminifier.c \ + mvc/model/query/parser.c \ + mvc/model/query/scanner.c \ + mvc/view/engine/volt/parser.c \ +@@ -364,6 +363,16 @@ psr/log/loglevel.c \ + psr/log/nulllogger.c \ + registry.c" + ++ AC_MSG_CHECKING([Include non-free minifiers]) ++ if test "$PHP_NON_FREE" = "yes"; then ++ phalcon_sources="$phalcon_sources assets/filters/jsminifier.c assets/filters/cssminifier.c " ++ AC_DEFINE([PHALCON_NON_FREE], [1], [Whether non-free minifiers are available]) ++ AC_MSG_RESULT([yes, css and js]) ++ else ++ phalcon_sources="$phalcon_sources assets/filters/nojsminifier.c assets/filters/nocssminifier.c " ++ AC_MSG_RESULT([no]) ++ fi ++ + PHP_NEW_EXTENSION(phalcon, $phalcon_sources, $ext_shared) + PHP_ADD_EXTENSION_DEP([phalcon], [spl]) + diff --git a/2775.patch b/2775.patch new file mode 100644 index 0000000..9ced075 --- /dev/null +++ b/2775.patch @@ -0,0 +1,43 @@ +From 9950f69baf175606d8fb72ce0b9bb10b892934f1 Mon Sep 17 00:00:00 2001 +From: Remi Collet <fedora@famillecollet.com> +Date: Thu, 4 Sep 2014 15:30:38 +0200 +Subject: [PATCH] Fix JSON detection + +--- + ext/config.m4 | 18 ++++++------------ + 1 file changed, 6 insertions(+), 12 deletions(-) + +diff --git a/ext/config.m4 b/ext/config.m4 +index 88f8e4c..2340e9b 100644 +--- a/ext/config.m4 ++++ b/ext/config.m4 +@@ -399,23 +399,17 @@ registry.c" + [[#include "php_config.h"]] + ) + +- AC_CHECK_DECL( +- [HAVE_JSON], ++ AC_CHECK_HEADERS( ++ [ext/json/php_json.h], + [ +- AC_CHECK_HEADERS( +- [ext/json/php_json.h], +- [ +- PHP_ADD_EXTENSION_DEP([phalcon], [json]) +- AC_DEFINE([PHALCON_USE_PHP_JSON], [1], [Whether PHP json extension is present at compile time]) +- ], +- , +- [[#include "main/php.h"]] +- ) ++ PHP_ADD_EXTENSION_DEP([phalcon], [json]) ++ AC_DEFINE([PHALCON_USE_PHP_JSON], [1], [Whether PHP json extension is present at compile time]) + ], + , +- [[#include "php_config.h"]] ++ [[#include "main/php.h"]] + ) + ++ + AC_CHECK_DECL( + [HAVE_PHP_SESSION], + [ diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6b0981e --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../../common/Makefile + +refl: + php --re "XCache" > REFLECTION + php --re "XCache Cacher" >> REFLECTION + php --re "XCache Coverager" >> REFLECTION + php --re "XCache Optimizer" >> REFLECTION diff --git a/REFLECTION b/REFLECTION new file mode 100644 index 0000000..9d7ec99 --- /dev/null +++ b/REFLECTION @@ -0,0 +1,37193 @@ +Extension [ <persistent> extension #171 phalcon version 1.3.2 ] { + + - Dependencies { + Dependency [ spl (Required) ] + Dependency [ date (Required) ] + Dependency [ json (Required) ] + Dependency [ session (Required) ] + Dependency [ pcre (Optional) ] + Dependency [ hash (Required) ] + Dependency [ apc (Optional) ] + Dependency [ apcu (Optional) ] + Dependency [ XCache (Optional) ] + Dependency [ memcache (Optional) ] + Dependency [ memcached (Optional) ] + Dependency [ mongo (Optional) ] + Dependency [ filter (Optional) ] + Dependency [ iconv (Optional) ] + Dependency [ libxml (Optional) ] + Dependency [ mbstring (Optional) ] + Dependency [ mcrypt (Optional) ] + Dependency [ openssl (Optional) ] + Dependency [ pdo (Optional) ] + Dependency [ gd (Optional) ] + Dependency [ imagick (Optional) ] + } + + - INI { + Entry [ phalcon.orm.events <ALL> ] + Current = '1' + } + Entry [ phalcon.orm.virtual_foreign_keys <ALL> ] + Current = '1' + } + Entry [ phalcon.orm.column_renaming <ALL> ] + Current = '1' + } + Entry [ phalcon.orm.not_null_validations <ALL> ] + Current = '1' + } + Entry [ phalcon.orm.exception_on_failed_save <ALL> ] + Current = '0' + } + Entry [ phalcon.orm.enable_literals <ALL> ] + Current = '1' + } + Entry [ phalcon.db.escape_identifiers <ALL> ] + Current = '1' + } + Entry [ phalcon.register_psr3_classes <SYSTEM> ] + Current = '0' + } + } + + - Classes [320] { + Class [ <internal:phalcon> class Phalcon\Exception extends Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Acl\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Annotations\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Assets\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Cache\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Crypt\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\CLI\Console\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\CLI\Dispatcher\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\CLI\Router\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Db\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\DI\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Escaper\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Events\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Filter\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Flash\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Forms\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Http\Cookie\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Http\Request\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Http\Response\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Image\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Application\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Collection\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Dispatcher\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Transaction\Exception extends Phalcon\Mvc\Model\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Router\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Url\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\View\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Paginator\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Tag\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Validation\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Security\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Session\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Config\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Loader\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Logger\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Translate\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\DiInterface extends ArrayAccess ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [3] { + Method [ <internal:phalcon> abstract static public method setDefault ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon> abstract static public method getDefault ] { + } + + Method [ <internal:phalcon> abstract static public method reset ] { + } + } + + - Properties [0] { + } + + - Methods [13] { + Method [ <internal:phalcon> abstract public method set ] { + + - Parameters [3] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <optional> $shared ] + } + } + + Method [ <internal:phalcon> abstract public method remove ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> abstract public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon> abstract public method getShared ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon> abstract public method setService ] { + + - Parameters [1] { + Parameter #0 [ <required> $rawDefinition ] + } + } + + Method [ <internal:phalcon> abstract public method getService ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> abstract public method has ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> abstract public method wasFreshInstance ] { + } + + Method [ <internal:phalcon> abstract public method getServices ] { + } + + Method [ <internal:Core, inherits ArrayAccess> abstract public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $offset ] + } + } + + Method [ <internal:Core, inherits ArrayAccess> abstract public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $offset ] + } + } + + Method [ <internal:Core, inherits ArrayAccess> abstract public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $offset ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:Core, inherits ArrayAccess> abstract public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $offset ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\DI\InjectionAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ <internal:phalcon> abstract public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon> abstract public method getDI ] { + + - Parameters [0] { + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Events\EventsAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ <internal:phalcon> abstract public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon> abstract public method getEventsManager ] { + + - Parameters [0] { + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Acl\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [17] { + Method [ <internal:phalcon> abstract public method setDefaultAction ] { + + - Parameters [1] { + Parameter #0 [ <required> $defaultAccess ] + } + } + + Method [ <internal:phalcon> abstract public method getDefaultAction ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method addRole ] { + + - Parameters [2] { + Parameter #0 [ <required> $role ] + Parameter #1 [ <optional> $accessInherits ] + } + } + + Method [ <internal:phalcon> abstract public method addInherit ] { + + - Parameters [2] { + Parameter #0 [ <required> $roleName ] + Parameter #1 [ <required> $roleToInherit ] + } + } + + Method [ <internal:phalcon> abstract public method isRole ] { + + - Parameters [1] { + Parameter #0 [ <required> $roleName ] + } + } + + Method [ <internal:phalcon> abstract public method isResource ] { + + - Parameters [1] { + Parameter #0 [ <required> $resourceName ] + } + } + + Method [ <internal:phalcon> abstract public method addResource ] { + + - Parameters [2] { + Parameter #0 [ <required> $resource ] + Parameter #1 [ <optional> $accessList ] + } + } + + Method [ <internal:phalcon> abstract public method addResourceAccess ] { + + - Parameters [2] { + Parameter #0 [ <required> $resourceName ] + Parameter #1 [ <required> $accessList ] + } + } + + Method [ <internal:phalcon> abstract public method dropResourceAccess ] { + + - Parameters [2] { + Parameter #0 [ <required> $resourceName ] + Parameter #1 [ <required> $accessList ] + } + } + + Method [ <internal:phalcon> abstract public method allow ] { + + - Parameters [3] { + Parameter #0 [ <required> $roleName ] + Parameter #1 [ <required> $resourceName ] + Parameter #2 [ <required> $access ] + } + } + + Method [ <internal:phalcon> abstract public method deny ] { + + - Parameters [3] { + Parameter #0 [ <required> $roleName ] + Parameter #1 [ <required> $resourceName ] + Parameter #2 [ <required> $access ] + } + } + + Method [ <internal:phalcon> abstract public method isAllowed ] { + + - Parameters [3] { + Parameter #0 [ <required> $role ] + Parameter #1 [ <required> $resource ] + Parameter #2 [ <required> $access ] + } + } + + Method [ <internal:phalcon> abstract public method getActiveRole ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method getActiveResource ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method getActiveAccess ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method getRoles ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method getResources ] { + + - Parameters [0] { + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Acl\ResourceInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ <internal:phalcon> abstract public method getName ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method getDescription ] { + + - Parameters [0] { + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Acl\RoleInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ <internal:phalcon> abstract public method getName ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method getDescription ] { + + - Parameters [0] { + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Annotations\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [9] { + Method [ <internal:phalcon> abstract public method read ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon> abstract public method write ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $data ] + } + } + + Method [ <internal:phalcon> abstract public method setReader ] { + + - Parameters [1] { + Parameter #0 [ <required> $reader ] + } + } + + Method [ <internal:phalcon> abstract public method getReader ] { + } + + Method [ <internal:phalcon> abstract public method get ] { + + - Parameters [1] { + Parameter #0 [ <required> $className ] + } + } + + Method [ <internal:phalcon> abstract public method getMethods ] { + + - Parameters [1] { + Parameter #0 [ <required> $className ] + } + } + + Method [ <internal:phalcon> abstract public method getMethod ] { + + - Parameters [2] { + Parameter #0 [ <required> $className ] + Parameter #1 [ <required> $methodName ] + } + } + + Method [ <internal:phalcon> abstract public method getProperties ] { + + - Parameters [1] { + Parameter #0 [ <required> $className ] + } + } + + Method [ <internal:phalcon> abstract public method getProperty ] { + + - Parameters [2] { + Parameter #0 [ <required> $className ] + Parameter #1 [ <required> $propertyName ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Annotations\ReaderInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ <internal:phalcon> abstract static public method parseDocBlock ] { + + - Parameters [3] { + Parameter #0 [ <required> $docBlock ] + Parameter #1 [ <optional> $file ] + Parameter #2 [ <optional> $line ] + } + } + } + + - Properties [0] { + } + + - Methods [1] { + Method [ <internal:phalcon> abstract public method parse ] { + + - Parameters [1] { + Parameter #0 [ <required> $className ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Assets\FilterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [1] { + Method [ <internal:phalcon> abstract public method filter ] { + + - Parameters [1] { + Parameter #0 [ <required> $content ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Cache\BackendInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [14] { + Method [ <internal:phalcon> abstract public method start ] { + + - Parameters [2] { + Parameter #0 [ <required> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon> abstract public method stop ] { + + - Parameters [1] { + Parameter #0 [ <optional> $stopBuffer ] + } + } + + Method [ <internal:phalcon> abstract public method getFrontend ] { + } + + Method [ <internal:phalcon> abstract public method getOptions ] { + } + + Method [ <internal:phalcon> abstract public method isFresh ] { + } + + Method [ <internal:phalcon> abstract public method isStarted ] { + } + + Method [ <internal:phalcon> abstract public method setLastKey ] { + + - Parameters [1] { + Parameter #0 [ <required> $lastKey ] + } + } + + Method [ <internal:phalcon> abstract public method getLastKey ] { + } + + Method [ <internal:phalcon> abstract public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon> abstract public method save ] { + + - Parameters [4] { + Parameter #0 [ <optional> $keyName ] + Parameter #1 [ <optional> $content ] + Parameter #2 [ <optional> $lifetime ] + Parameter #3 [ <optional> $stopBuffer ] + } + } + + Method [ <internal:phalcon> abstract public method delete ] { + + - Parameters [1] { + Parameter #0 [ <required> $keyName ] + } + } + + Method [ <internal:phalcon> abstract public method queryKeys ] { + + - Parameters [1] { + Parameter #0 [ <optional> $prefix ] + } + } + + Method [ <internal:phalcon> abstract public method exists ] { + + - Parameters [2] { + Parameter #0 [ <optional> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon> abstract public method flush ] { + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Cache\FrontendInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [7] { + Method [ <internal:phalcon> abstract public method getLifetime ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method isBuffering ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method start ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method getContent ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method stop ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method beforeStore ] { + + - Parameters [1] { + Parameter #0 [ <required> $data ] + } + } + + Method [ <internal:phalcon> abstract public method afterRetrieve ] { + + - Parameters [1] { + Parameter #0 [ <required> $data ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\CryptInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [12] { + Method [ <internal:phalcon> abstract public method setCipher ] { + + - Parameters [1] { + Parameter #0 [ <required> $cipher ] + } + } + + Method [ <internal:phalcon> abstract public method getCipher ] { + } + + Method [ <internal:phalcon> abstract public method setMode ] { + + - Parameters [1] { + Parameter #0 [ <required> $mode ] + } + } + + Method [ <internal:phalcon> abstract public method getMode ] { + } + + Method [ <internal:phalcon> abstract public method setKey ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon> abstract public method getKey ] { + } + + Method [ <internal:phalcon> abstract public method encrypt ] { + + - Parameters [2] { + Parameter #0 [ <required> $text ] + Parameter #1 [ <optional> $key ] + } + } + + Method [ <internal:phalcon> abstract public method decrypt ] { + + - Parameters [2] { + Parameter #0 [ <required> $text ] + Parameter #1 [ <optional> $key ] + } + } + + Method [ <internal:phalcon> abstract public method encryptBase64 ] { + + - Parameters [3] { + Parameter #0 [ <required> $text ] + Parameter #1 [ <optional> $key ] + Parameter #2 [ <optional> $safe ] + } + } + + Method [ <internal:phalcon> abstract public method decryptBase64 ] { + + - Parameters [3] { + Parameter #0 [ <required> $text ] + Parameter #1 [ <optional> $key ] + Parameter #2 [ <optional> $safe ] + } + } + + Method [ <internal:phalcon> abstract public method getAvailableCiphers ] { + } + + Method [ <internal:phalcon> abstract public method getAvailableModes ] { + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Db\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [63] { + Method [ <internal:phalcon> abstract public method fetchOne ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <optional> $fetchMode ] + Parameter #2 [ <optional> $placeholders ] + } + } + + Method [ <internal:phalcon> abstract public method fetchAll ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <optional> $fetchMode ] + Parameter #2 [ <optional> $placeholders ] + } + } + + Method [ <internal:phalcon> abstract public method insert ] { + + - Parameters [4] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <required> $values ] + Parameter #2 [ <optional> $fields ] + Parameter #3 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon> abstract public method update ] { + + - Parameters [5] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <required> $fields ] + Parameter #2 [ <required> $values ] + Parameter #3 [ <optional> $whereCondition ] + Parameter #4 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon> abstract public method delete ] { + + - Parameters [4] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $whereCondition ] + Parameter #2 [ <optional> $placeholders ] + Parameter #3 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon> abstract public method getColumnList ] { + + - Parameters [1] { + Parameter #0 [ <required> $columnList ] + } + } + + Method [ <internal:phalcon> abstract public method limit ] { + + - Parameters [2] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <required> $number ] + } + } + + Method [ <internal:phalcon> abstract public method tableExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon> abstract public method viewExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon> abstract public method forUpdate ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon> abstract public method sharedLock ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon> abstract public method createTable ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $definition ] + } + } + + Method [ <internal:phalcon> abstract public method dropTable ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + Parameter #2 [ <optional> $ifExists ] + } + } + + Method [ <internal:phalcon> abstract public method createView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon> abstract public method dropView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <optional> $schemaName ] + Parameter #2 [ <optional> $ifExists ] + } + } + + Method [ <internal:phalcon> abstract public method addColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon> abstract public method modifyColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon> abstract public method dropColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $columnName ] + } + } + + Method [ <internal:phalcon> abstract public method addIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon> abstract public method dropIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $indexName ] + } + } + + Method [ <internal:phalcon> abstract public method addPrimaryKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon> abstract public method dropPrimaryKey ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon> abstract public method addForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $reference ] + } + } + + Method [ <internal:phalcon> abstract public method dropForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $referenceName ] + } + } + + Method [ <internal:phalcon> abstract public method getColumnDefinition ] { + + - Parameters [1] { + Parameter #0 [ <required> $column ] + } + } + + Method [ <internal:phalcon> abstract public method listTables ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon> abstract public method listViews ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon> abstract public method getDescriptor ] { + } + + Method [ <internal:phalcon> abstract public method getConnectionId ] { + } + + Method [ <internal:phalcon> abstract public method getSQLStatement ] { + } + + Method [ <internal:phalcon> abstract public method getRealSQLStatement ] { + } + + Method [ <internal:phalcon> abstract public method getSQLVariables ] { + } + + Method [ <internal:phalcon> abstract public method getSQLBindTypes ] { + } + + Method [ <internal:phalcon> abstract public method getType ] { + } + + Method [ <internal:phalcon> abstract public method getDialectType ] { + } + + Method [ <internal:phalcon> abstract public method getDialect ] { + } + + Method [ <internal:phalcon> abstract public method connect ] { + + - Parameters [1] { + Parameter #0 [ <optional> $descriptor ] + } + } + + Method [ <internal:phalcon> abstract public method query ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlStatement ] + Parameter #1 [ <optional> $placeholders ] + Parameter #2 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon> abstract public method execute ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlStatement ] + Parameter #1 [ <optional> $placeholders ] + Parameter #2 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon> abstract public method affectedRows ] { + } + + Method [ <internal:phalcon> abstract public method close ] { + } + + Method [ <internal:phalcon> abstract public method escapeIdentifier ] { + + - Parameters [1] { + Parameter #0 [ <required> $identifier ] + } + } + + Method [ <internal:phalcon> abstract public method escapeString ] { + + - Parameters [1] { + Parameter #0 [ <required> $str ] + } + } + + Method [ <internal:phalcon> abstract public method convertBoundParams ] { + + - Parameters [2] { + Parameter #0 [ <required> $sqlStatement ] + Parameter #1 [ <required> $params ] + } + } + + Method [ <internal:phalcon> abstract public method lastInsertId ] { + + - Parameters [1] { + Parameter #0 [ <optional> $sequenceName ] + } + } + + Method [ <internal:phalcon> abstract public method begin ] { + } + + Method [ <internal:phalcon> abstract public method rollback ] { + } + + Method [ <internal:phalcon> abstract public method commit ] { + } + + Method [ <internal:phalcon> abstract public method isUnderTransaction ] { + } + + Method [ <internal:phalcon> abstract public method getInternalHandler ] { + } + + Method [ <internal:phalcon> abstract public method describeIndexes ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon> abstract public method describeReferences ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon> abstract public method tableOptions ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon> abstract public method useExplicitIdValue ] { + } + + Method [ <internal:phalcon> abstract public method getDefaultIdValue ] { + } + + Method [ <internal:phalcon> abstract public method supportSequences ] { + } + + Method [ <internal:phalcon> abstract public method createSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> abstract public method releaseSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> abstract public method rollbackSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> abstract public method setNestedTransactionsWithSavepoints ] { + + - Parameters [1] { + Parameter #0 [ <required> $nestedTransactionsWithSavepoints ] + } + } + + Method [ <internal:phalcon> abstract public method isNestedTransactionsWithSavepoints ] { + } + + Method [ <internal:phalcon> abstract public method getNestedTransactionSavepointName ] { + } + + Method [ <internal:phalcon> abstract public method describeColumns ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Db\ColumnInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [13] { + Method [ <internal:phalcon> abstract public method getSchemaName ] { + } + + Method [ <internal:phalcon> abstract public method getName ] { + } + + Method [ <internal:phalcon> abstract public method getType ] { + } + + Method [ <internal:phalcon> abstract public method getSize ] { + } + + Method [ <internal:phalcon> abstract public method getScale ] { + } + + Method [ <internal:phalcon> abstract public method isUnsigned ] { + } + + Method [ <internal:phalcon> abstract public method isNotNull ] { + } + + Method [ <internal:phalcon> abstract public method isPrimary ] { + } + + Method [ <internal:phalcon> abstract public method isAutoIncrement ] { + } + + Method [ <internal:phalcon> abstract public method isNumeric ] { + } + + Method [ <internal:phalcon> abstract public method isFirst ] { + } + + Method [ <internal:phalcon> abstract public method getAfterPosition ] { + } + + Method [ <internal:phalcon> abstract public method getBindType ] { + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Db\DialectInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [32] { + Method [ <internal:phalcon> abstract public method limit ] { + + - Parameters [2] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <required> $number ] + } + } + + Method [ <internal:phalcon> abstract public method forUpdate ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon> abstract public method sharedLock ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon> abstract public method select ] { + + - Parameters [1] { + Parameter #0 [ <required> $definition ] + } + } + + Method [ <internal:phalcon> abstract public method getColumnList ] { + + - Parameters [1] { + Parameter #0 [ <required> $columnList ] + } + } + + Method [ <internal:phalcon> abstract public method getColumnDefinition ] { + + - Parameters [1] { + Parameter #0 [ <required> $column ] + } + } + + Method [ <internal:phalcon> abstract public method addColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon> abstract public method modifyColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon> abstract public method dropColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $columnName ] + } + } + + Method [ <internal:phalcon> abstract public method addIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon> abstract public method dropIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $indexName ] + } + } + + Method [ <internal:phalcon> abstract public method addPrimaryKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon> abstract public method dropPrimaryKey ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon> abstract public method addForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $reference ] + } + } + + Method [ <internal:phalcon> abstract public method dropForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $referenceName ] + } + } + + Method [ <internal:phalcon> abstract public method createTable ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $definition ] + } + } + + Method [ <internal:phalcon> abstract public method dropTable ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon> abstract public method createView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon> abstract public method dropView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <optional> $ifExists ] + } + } + + Method [ <internal:phalcon> abstract public method tableExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon> abstract public method viewExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon> abstract public method describeColumns ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon> abstract public method listTables ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon> abstract public method listViews ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon> abstract public method describeIndexes ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon> abstract public method describeReferences ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon> abstract public method tableOptions ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon> abstract public method supportsSavepoints ] { + } + + Method [ <internal:phalcon> abstract public method supportsReleaseSavepoints ] { + } + + Method [ <internal:phalcon> abstract public method createSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> abstract public method releaseSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> abstract public method rollbackSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Db\IndexInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ <internal:phalcon> abstract public method getName ] { + } + + Method [ <internal:phalcon> abstract public method getColumns ] { + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Db\ReferenceInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [6] { + Method [ <internal:phalcon> abstract public method getName ] { + } + + Method [ <internal:phalcon> abstract public method getSchemaName ] { + } + + Method [ <internal:phalcon> abstract public method getReferencedSchema ] { + } + + Method [ <internal:phalcon> abstract public method getColumns ] { + } + + Method [ <internal:phalcon> abstract public method getReferencedTable ] { + } + + Method [ <internal:phalcon> abstract public method getReferencedColumns ] { + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Db\ResultInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [8] { + Method [ <internal:phalcon> abstract public method execute ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method fetch ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method fetchArray ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method fetchAll ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method numRows ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method dataSeek ] { + + - Parameters [1] { + Parameter #0 [ <required> $number ] + } + } + + Method [ <internal:phalcon> abstract public method setFetchMode ] { + + - Parameters [3] { + Parameter #0 [ <required> $fetchMode ] + Parameter #1 [ <optional> $fetchArg1 ] + Parameter #2 [ <optional> $fetchArg2 ] + } + } + + Method [ <internal:phalcon> abstract public method getInternalResult ] { + + - Parameters [0] { + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\DispatcherInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [13] { + Method [ <internal:phalcon> abstract public method setActionSuffix ] { + + - Parameters [1] { + Parameter #0 [ <required> $actionSuffix ] + } + } + + Method [ <internal:phalcon> abstract public method setDefaultNamespace ] { + + - Parameters [1] { + Parameter #0 [ <required> $namespace ] + } + } + + Method [ <internal:phalcon> abstract public method setDefaultAction ] { + + - Parameters [1] { + Parameter #0 [ <required> $actionName ] + } + } + + Method [ <internal:phalcon> abstract public method setActionName ] { + + - Parameters [1] { + Parameter #0 [ <required> $actionName ] + } + } + + Method [ <internal:phalcon> abstract public method getActionName ] { + } + + Method [ <internal:phalcon> abstract public method setParams ] { + + - Parameters [1] { + Parameter #0 [ <required> $params ] + } + } + + Method [ <internal:phalcon> abstract public method getParams ] { + } + + Method [ <internal:phalcon> abstract public method setParam ] { + + - Parameters [2] { + Parameter #0 [ <required> $param ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> abstract public method getParam ] { + + - Parameters [2] { + Parameter #0 [ <required> $param ] + Parameter #1 [ <optional> $filters ] + } + } + + Method [ <internal:phalcon> abstract public method isFinished ] { + } + + Method [ <internal:phalcon> abstract public method getReturnedValue ] { + } + + Method [ <internal:phalcon> abstract public method dispatch ] { + } + + Method [ <internal:phalcon> abstract public method forward ] { + + - Parameters [1] { + Parameter #0 [ <required> $forward ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\DI\ServiceInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [7] { + Method [ <internal:phalcon> abstract public method getName ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method setShared ] { + + - Parameters [1] { + Parameter #0 [ <required> $shared ] + } + } + + Method [ <internal:phalcon> abstract public method isShared ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method setDefinition ] { + + - Parameters [1] { + Parameter #0 [ <required> $definition ] + } + } + + Method [ <internal:phalcon> abstract public method getDefinition ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method isResolved ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method resolve ] { + + - Parameters [2] { + Parameter #0 [ <optional> $parameters ] + Parameter #1 [ <optional> $dependencyInjector ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\EscaperInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [8] { + Method [ <internal:phalcon> abstract public method setEncoding ] { + + - Parameters [1] { + Parameter #0 [ <required> $encoding ] + } + } + + Method [ <internal:phalcon> abstract public method getEncoding ] { + } + + Method [ <internal:phalcon> abstract public method setHtmlQuoteType ] { + + - Parameters [1] { + Parameter #0 [ <required> $quoteType ] + } + } + + Method [ <internal:phalcon> abstract public method escapeHtml ] { + + - Parameters [1] { + Parameter #0 [ <required> $text ] + } + } + + Method [ <internal:phalcon> abstract public method escapeHtmlAttr ] { + + - Parameters [1] { + Parameter #0 [ <required> $text ] + } + } + + Method [ <internal:phalcon> abstract public method escapeCss ] { + + - Parameters [1] { + Parameter #0 [ <required> $css ] + } + } + + Method [ <internal:phalcon> abstract public method escapeJs ] { + + - Parameters [1] { + Parameter #0 [ <required> $js ] + } + } + + Method [ <internal:phalcon> abstract public method escapeUrl ] { + + - Parameters [1] { + Parameter #0 [ <required> $url ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Events\ManagerInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [4] { + Method [ <internal:phalcon> abstract public method attach ] { + + - Parameters [2] { + Parameter #0 [ <required> $eventType ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon> abstract public method detachAll ] { + + - Parameters [1] { + Parameter #0 [ <optional> $type ] + } + } + + Method [ <internal:phalcon> abstract public method fire ] { + + - Parameters [3] { + Parameter #0 [ <required> $eventType ] + Parameter #1 [ <required> $source ] + Parameter #2 [ <optional> $data ] + } + } + + Method [ <internal:phalcon> abstract public method getListeners ] { + + - Parameters [1] { + Parameter #0 [ <required> $type ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\FlashInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [5] { + Method [ <internal:phalcon> abstract public method error ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon> abstract public method notice ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon> abstract public method success ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon> abstract public method warning ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon> abstract public method message ] { + + - Parameters [2] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $message ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\FilterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [3] { + Method [ <internal:phalcon> abstract public method add ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon> abstract public method sanitize ] { + + - Parameters [2] { + Parameter #0 [ <required> $value ] + Parameter #1 [ <required> $filters ] + } + } + + Method [ <internal:phalcon> abstract public method getFilters ] { + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Filter\UserFilterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [1] { + Method [ <internal:phalcon> abstract public method filter ] { + + - Parameters [1] { + Parameter #0 [ <required> $value ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Forms\ElementInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [31] { + Method [ <internal:phalcon> abstract public method setForm ] { + + - Parameters [1] { + Parameter #0 [ <required> $form ] + } + } + + Method [ <internal:phalcon> abstract public method getForm ] { + } + + Method [ <internal:phalcon> abstract public method setName ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> abstract public method getName ] { + } + + Method [ <internal:phalcon> abstract public method setFilters ] { + + - Parameters [1] { + Parameter #0 [ <required> $filters ] + } + } + + Method [ <internal:phalcon> abstract public method addFilter ] { + + - Parameters [1] { + Parameter #0 [ <required> $filter ] + } + } + + Method [ <internal:phalcon> abstract public method getFilters ] { + } + + Method [ <internal:phalcon> abstract public method addValidators ] { + + - Parameters [2] { + Parameter #0 [ <required> $validators ] + Parameter #1 [ <optional> $merge ] + } + } + + Method [ <internal:phalcon> abstract public method addValidator ] { + + - Parameters [1] { + Parameter #0 [ <required> $validator ] + } + } + + Method [ <internal:phalcon> abstract public method getValidators ] { + } + + Method [ <internal:phalcon> abstract public method prepareAttributes ] { + + - Parameters [2] { + Parameter #0 [ <optional> $attributes ] + Parameter #1 [ <optional> $useChecked ] + } + } + + Method [ <internal:phalcon> abstract public method setAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> abstract public method getAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon> abstract public method setAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon> abstract public method getAttributes ] { + } + + Method [ <internal:phalcon> abstract public method setUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> abstract public method getUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon> abstract public method setUserOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon> abstract public method getUserOptions ] { + } + + Method [ <internal:phalcon> abstract public method setLabel ] { + + - Parameters [1] { + Parameter #0 [ <required> $label ] + } + } + + Method [ <internal:phalcon> abstract public method getLabel ] { + } + + Method [ <internal:phalcon> abstract public method label ] { + } + + Method [ <internal:phalcon> abstract public method setDefault ] { + + - Parameters [1] { + Parameter #0 [ <required> $value ] + } + } + + Method [ <internal:phalcon> abstract public method getDefault ] { + } + + Method [ <internal:phalcon> abstract public method getValue ] { + } + + Method [ <internal:phalcon> abstract public method getMessages ] { + } + + Method [ <internal:phalcon> abstract public method hasMessages ] { + } + + Method [ <internal:phalcon> abstract public method setMessages ] { + + - Parameters [1] { + Parameter #0 [ <required> $group ] + } + } + + Method [ <internal:phalcon> abstract public method appendMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon> abstract public method clear ] { + } + + Method [ <internal:phalcon> abstract public method render ] { + + - Parameters [1] { + Parameter #0 [ <optional> $attributes ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Http\RequestInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [38] { + Method [ <internal:phalcon> abstract public method get ] { + + - Parameters [3] { + Parameter #0 [ <optional> $name ] + Parameter #1 [ <optional> $filters ] + Parameter #2 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon> abstract public method getPost ] { + + - Parameters [3] { + Parameter #0 [ <optional> $name ] + Parameter #1 [ <optional> $filters ] + Parameter #2 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon> abstract public method getPut ] { + + - Parameters [3] { + Parameter #0 [ <optional> $name ] + Parameter #1 [ <optional> $filters ] + Parameter #2 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon> abstract public method getQuery ] { + + - Parameters [3] { + Parameter #0 [ <optional> $name ] + Parameter #1 [ <optional> $filters ] + Parameter #2 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon> abstract public method getServer ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> abstract public method has ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> abstract public method hasPost ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> abstract public method hasPut ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> abstract public method hasQuery ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> abstract public method hasServer ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> abstract public method getHeader ] { + + - Parameters [1] { + Parameter #0 [ <required> $header ] + } + } + + Method [ <internal:phalcon> abstract public method getScheme ] { + } + + Method [ <internal:phalcon> abstract public method isAjax ] { + } + + Method [ <internal:phalcon> abstract public method isSoapRequested ] { + } + + Method [ <internal:phalcon> abstract public method isSecureRequest ] { + } + + Method [ <internal:phalcon> abstract public method getRawBody ] { + } + + Method [ <internal:phalcon> abstract public method getServerAddress ] { + } + + Method [ <internal:phalcon> abstract public method getServerName ] { + } + + Method [ <internal:phalcon> abstract public method getHttpHost ] { + } + + Method [ <internal:phalcon> abstract public method getClientAddress ] { + + - Parameters [1] { + Parameter #0 [ <optional> $trustForwardedHeader ] + } + } + + Method [ <internal:phalcon> abstract public method getMethod ] { + } + + Method [ <internal:phalcon> abstract public method getUserAgent ] { + } + + Method [ <internal:phalcon> abstract public method isMethod ] { + + - Parameters [1] { + Parameter #0 [ <required> $methods ] + } + } + + Method [ <internal:phalcon> abstract public method isPost ] { + } + + Method [ <internal:phalcon> abstract public method isGet ] { + } + + Method [ <internal:phalcon> abstract public method isPut ] { + } + + Method [ <internal:phalcon> abstract public method isHead ] { + } + + Method [ <internal:phalcon> abstract public method isDelete ] { + } + + Method [ <internal:phalcon> abstract public method isOptions ] { + } + + Method [ <internal:phalcon> abstract public method hasFiles ] { + + - Parameters [1] { + Parameter #0 [ <optional> $notErrored ] + } + } + + Method [ <internal:phalcon> abstract public method getUploadedFiles ] { + + - Parameters [1] { + Parameter #0 [ <optional> $notErrored ] + } + } + + Method [ <internal:phalcon> abstract public method getHTTPReferer ] { + } + + Method [ <internal:phalcon> abstract public method getAcceptableContent ] { + } + + Method [ <internal:phalcon> abstract public method getBestAccept ] { + } + + Method [ <internal:phalcon> abstract public method getClientCharsets ] { + } + + Method [ <internal:phalcon> abstract public method getBestCharset ] { + } + + Method [ <internal:phalcon> abstract public method getLanguages ] { + } + + Method [ <internal:phalcon> abstract public method getBestLanguage ] { + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Http\Request\FileInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [6] { + Method [ <internal:phalcon> abstract public method getSize ] { + } + + Method [ <internal:phalcon> abstract public method getName ] { + } + + Method [ <internal:phalcon> abstract public method getTempName ] { + } + + Method [ <internal:phalcon> abstract public method getType ] { + } + + Method [ <internal:phalcon> abstract public method getRealType ] { + } + + Method [ <internal:phalcon> abstract public method moveTo ] { + + - Parameters [1] { + Parameter #0 [ <required> $destination ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Http\ResponseInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [17] { + Method [ <internal:phalcon> abstract public method setStatusCode ] { + + - Parameters [2] { + Parameter #0 [ <required> $code ] + Parameter #1 [ <required> $message ] + } + } + + Method [ <internal:phalcon> abstract public method getHeaders ] { + } + + Method [ <internal:phalcon> abstract public method setHeader ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> abstract public method setRawHeader ] { + + - Parameters [1] { + Parameter #0 [ <required> $header ] + } + } + + Method [ <internal:phalcon> abstract public method resetHeaders ] { + } + + Method [ <internal:phalcon> abstract public method setExpires ] { + + - Parameters [1] { + Parameter #0 [ <required> $datetime ] + } + } + + Method [ <internal:phalcon> abstract public method setNotModified ] { + } + + Method [ <internal:phalcon> abstract public method setContentType ] { + + - Parameters [2] { + Parameter #0 [ <required> $contentType ] + Parameter #1 [ <optional> $charset ] + } + } + + Method [ <internal:phalcon> abstract public method redirect ] { + + - Parameters [3] { + Parameter #0 [ <optional> $location ] + Parameter #1 [ <optional> $externalRedirect ] + Parameter #2 [ <optional> $statusCode ] + } + } + + Method [ <internal:phalcon> abstract public method setContent ] { + + - Parameters [1] { + Parameter #0 [ <required> $content ] + } + } + + Method [ <internal:phalcon> abstract public method setJsonContent ] { + + - Parameters [1] { + Parameter #0 [ <required> $content ] + } + } + + Method [ <internal:phalcon> abstract public method appendContent ] { + + - Parameters [1] { + Parameter #0 [ <required> $content ] + } + } + + Method [ <internal:phalcon> abstract public method getContent ] { + } + + Method [ <internal:phalcon> abstract public method sendHeaders ] { + } + + Method [ <internal:phalcon> abstract public method sendCookies ] { + } + + Method [ <internal:phalcon> abstract public method send ] { + } + + Method [ <internal:phalcon> abstract public method setFileToSend ] { + + - Parameters [2] { + Parameter #0 [ <required> $filePath ] + Parameter #1 [ <optional> $attachmentName ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Http\Response\CookiesInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [8] { + Method [ <internal:phalcon> abstract public method useEncryption ] { + + - Parameters [1] { + Parameter #0 [ <required> $useEncryption ] + } + } + + Method [ <internal:phalcon> abstract public method isUsingEncryption ] { + } + + Method [ <internal:phalcon> abstract public method set ] { + + - Parameters [7] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $value ] + Parameter #2 [ <optional> $expire ] + Parameter #3 [ <optional> $path ] + Parameter #4 [ <optional> $secure ] + Parameter #5 [ <optional> $domain ] + Parameter #6 [ <optional> $httpOnly ] + } + } + + Method [ <internal:phalcon> abstract public method get ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> abstract public method has ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> abstract public method delete ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> abstract public method send ] { + } + + Method [ <internal:phalcon> abstract public method reset ] { + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Http\Response\HeadersInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [6] { + Method [ <internal:phalcon> abstract public method set ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> abstract public method get ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> abstract public method setRaw ] { + + - Parameters [1] { + Parameter #0 [ <required> $header ] + } + } + + Method [ <internal:phalcon> abstract public method send ] { + } + + Method [ <internal:phalcon> abstract public method reset ] { + } + + Method [ <internal:phalcon> abstract public method toArray ] { + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Image\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [15] { + Method [ <internal:phalcon> abstract public method resize ] { + + - Parameters [3] { + Parameter #0 [ <optional> $width ] + Parameter #1 [ <optional> $height ] + Parameter #2 [ <optional> $master ] + } + } + + Method [ <internal:phalcon> abstract public method liquidRescale ] { + + - Parameters [4] { + Parameter #0 [ <required> $width ] + Parameter #1 [ <required> $height ] + Parameter #2 [ <optional> $delta_x ] + Parameter #3 [ <optional> $rigidity ] + } + } + + Method [ <internal:phalcon> abstract public method crop ] { + + - Parameters [4] { + Parameter #0 [ <required> $width ] + Parameter #1 [ <required> $height ] + Parameter #2 [ <optional> $offset_x ] + Parameter #3 [ <optional> $offset_y ] + } + } + + Method [ <internal:phalcon> abstract public method rotate ] { + + - Parameters [1] { + Parameter #0 [ <required> $degrees ] + } + } + + Method [ <internal:phalcon> abstract public method flip ] { + + - Parameters [1] { + Parameter #0 [ <required> $direction ] + } + } + + Method [ <internal:phalcon> abstract public method sharpen ] { + + - Parameters [1] { + Parameter #0 [ <required> $amount ] + } + } + + Method [ <internal:phalcon> abstract public method reflection ] { + + - Parameters [3] { + Parameter #0 [ <optional> $height ] + Parameter #1 [ <optional> $opacity ] + Parameter #2 [ <optional> $fade_in ] + } + } + + Method [ <internal:phalcon> abstract public method watermark ] { + + - Parameters [4] { + Parameter #0 [ <required> $watermark ] + Parameter #1 [ <optional> $offset_x ] + Parameter #2 [ <optional> $offset_y ] + Parameter #3 [ <optional> $opacity ] + } + } + + Method [ <internal:phalcon> abstract public method text ] { + + - Parameters [7] { + Parameter #0 [ <required> $text ] + Parameter #1 [ <optional> $offset_x ] + Parameter #2 [ <optional> $offset_y ] + Parameter #3 [ <optional> $opacity ] + Parameter #4 [ <optional> $color ] + Parameter #5 [ <optional> $size ] + Parameter #6 [ <optional> $fontfile ] + } + } + + Method [ <internal:phalcon> abstract public method mask ] { + + - Parameters [1] { + Parameter #0 [ <required> $mask ] + } + } + + Method [ <internal:phalcon> abstract public method background ] { + + - Parameters [2] { + Parameter #0 [ <required> $color ] + Parameter #1 [ <optional> $quality ] + } + } + + Method [ <internal:phalcon> abstract public method blur ] { + + - Parameters [1] { + Parameter #0 [ <optional> $radius ] + } + } + + Method [ <internal:phalcon> abstract public method pixelate ] { + + - Parameters [1] { + Parameter #0 [ <optional> $amount ] + } + } + + Method [ <internal:phalcon> abstract public method save ] { + + - Parameters [2] { + Parameter #0 [ <optional> $file ] + Parameter #1 [ <optional> $quality ] + } + } + + Method [ <internal:phalcon> abstract public method render ] { + + - Parameters [2] { + Parameter #0 [ <optional> $type ] + Parameter #1 [ <optional> $quality ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Logger\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [17] { + Method [ <internal:phalcon> abstract public method setFormatter ] { + + - Parameters [1] { + Parameter #0 [ <required> $formatter ] + } + } + + Method [ <internal:phalcon> abstract public method getFormatter ] { + } + + Method [ <internal:phalcon> abstract public method setLogLevel ] { + + - Parameters [1] { + Parameter #0 [ <required> $level ] + } + } + + Method [ <internal:phalcon> abstract public method getLogLevel ] { + } + + Method [ <internal:phalcon> abstract public method begin ] { + } + + Method [ <internal:phalcon> abstract public method commit ] { + } + + Method [ <internal:phalcon> abstract public method rollback ] { + } + + Method [ <internal:phalcon> abstract public method close ] { + } + + Method [ <internal:phalcon> abstract public method log ] { + + - Parameters [3] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $message ] + Parameter #2 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon> abstract public method debug ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon> abstract public method info ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon> abstract public method notice ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon> abstract public method warning ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon> abstract public method error ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon> abstract public method critical ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon> abstract public method alert ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon> abstract public method emergency ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Logger\FormatterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [1] { + Method [ <internal:phalcon> abstract public method format ] { + + - Parameters [4] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <required> $type ] + Parameter #2 [ <required> $timestamp ] + Parameter #3 [ <required> $context ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\CollectionInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [5] { + Method [ <internal:phalcon> abstract static public method cloneResult ] { + + - Parameters [2] { + Parameter #0 [ <required> $collection ] + Parameter #1 [ <required> $document ] + } + } + + Method [ <internal:phalcon> abstract static public method findById ] { + + - Parameters [1] { + Parameter #0 [ <required> $id ] + } + } + + Method [ <internal:phalcon> abstract static public method findFirst ] { + + - Parameters [1] { + Parameter #0 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon> abstract static public method find ] { + + - Parameters [1] { + Parameter #0 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon> abstract static public method count ] { + + - Parameters [1] { + Parameter #0 [ <optional> $parameters ] + } + } + } + + - Properties [0] { + } + + - Methods [15] { + Method [ <internal:phalcon> abstract public method setId ] { + + - Parameters [1] { + Parameter #0 [ <required> $id ] + } + } + + Method [ <internal:phalcon> abstract public method getId ] { + } + + Method [ <internal:phalcon> abstract public method getReservedAttributes ] { + } + + Method [ <internal:phalcon> abstract public method getSource ] { + } + + Method [ <internal:phalcon> abstract public method setConnectionService ] { + + - Parameters [1] { + Parameter #0 [ <required> $connectionService ] + } + } + + Method [ <internal:phalcon> abstract public method getConnection ] { + } + + Method [ <internal:phalcon> abstract public method readAttribute ] { + + - Parameters [1] { + Parameter #0 [ <required> $attribute ] + } + } + + Method [ <internal:phalcon> abstract public method writeAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> abstract public method fireEvent ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventName ] + } + } + + Method [ <internal:phalcon> abstract public method fireEventCancel ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventName ] + } + } + + Method [ <internal:phalcon> abstract public method validationHasFailed ] { + } + + Method [ <internal:phalcon> abstract public method getMessages ] { + } + + Method [ <internal:phalcon> abstract public method appendMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon> abstract public method save ] { + } + + Method [ <internal:phalcon> abstract public method delete ] { + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\Collection\ManagerInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [10] { + Method [ <internal:phalcon> abstract public method setCustomEventsManager ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon> abstract public method getCustomEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method initialize ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method isInitialized ] { + + - Parameters [1] { + Parameter #0 [ <required> $modelName ] + } + } + + Method [ <internal:phalcon> abstract public method getLastInitialized ] { + } + + Method [ <internal:phalcon> abstract public method setConnectionService ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $connectionService ] + } + } + + Method [ <internal:phalcon> abstract public method useImplicitObjectIds ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $useImplicitObjectIds ] + } + } + + Method [ <internal:phalcon> abstract public method isUsingImplicitObjectIds ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method getConnection ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method notifyEvent ] { + + - Parameters [2] { + Parameter #0 [ <required> $eventName ] + Parameter #1 [ <required> $model ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\ControllerInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\DispatcherInterface extends Phalcon\DispatcherInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [19] { + Method [ <internal:phalcon> abstract public method setControllerSuffix ] { + + - Parameters [1] { + Parameter #0 [ <required> $controllerSuffix ] + } + } + + Method [ <internal:phalcon> abstract public method setDefaultController ] { + + - Parameters [1] { + Parameter #0 [ <required> $controllerName ] + } + } + + Method [ <internal:phalcon> abstract public method setControllerName ] { + + - Parameters [2] { + Parameter #0 [ <required> $controllerName ] + Parameter #1 [ <optional> $isExact ] + } + } + + Method [ <internal:phalcon> abstract public method getControllerName ] { + } + + Method [ <internal:phalcon> abstract public method getLastController ] { + } + + Method [ <internal:phalcon> abstract public method getActiveController ] { + } + + Method [ <internal:phalcon, inherits Phalcon\DispatcherInterface> abstract public method setActionSuffix ] { + + - Parameters [1] { + Parameter #0 [ <required> $actionSuffix ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DispatcherInterface> abstract public method setDefaultNamespace ] { + + - Parameters [1] { + Parameter #0 [ <required> $namespace ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DispatcherInterface> abstract public method setDefaultAction ] { + + - Parameters [1] { + Parameter #0 [ <required> $actionName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DispatcherInterface> abstract public method setActionName ] { + + - Parameters [1] { + Parameter #0 [ <required> $actionName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DispatcherInterface> abstract public method getActionName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\DispatcherInterface> abstract public method setParams ] { + + - Parameters [1] { + Parameter #0 [ <required> $params ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DispatcherInterface> abstract public method getParams ] { + } + + Method [ <internal:phalcon, inherits Phalcon\DispatcherInterface> abstract public method setParam ] { + + - Parameters [2] { + Parameter #0 [ <required> $param ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DispatcherInterface> abstract public method getParam ] { + + - Parameters [2] { + Parameter #0 [ <required> $param ] + Parameter #1 [ <optional> $filters ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DispatcherInterface> abstract public method isFinished ] { + } + + Method [ <internal:phalcon, inherits Phalcon\DispatcherInterface> abstract public method getReturnedValue ] { + } + + Method [ <internal:phalcon, inherits Phalcon\DispatcherInterface> abstract public method dispatch ] { + } + + Method [ <internal:phalcon, inherits Phalcon\DispatcherInterface> abstract public method forward ] { + + - Parameters [1] { + Parameter #0 [ <required> $forward ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\Micro\CollectionInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [15] { + Method [ <internal:phalcon> abstract public method setPrefix ] { + + - Parameters [1] { + Parameter #0 [ <required> $prefix ] + } + } + + Method [ <internal:phalcon> abstract public method getPrefix ] { + } + + Method [ <internal:phalcon> abstract public method getHandlers ] { + } + + Method [ <internal:phalcon> abstract public method setHandler ] { + + - Parameters [2] { + Parameter #0 [ <required> $handler ] + Parameter #1 [ <optional> $lazy ] + } + } + + Method [ <internal:phalcon> abstract public method setLazy ] { + + - Parameters [1] { + Parameter #0 [ <required> $lazy ] + } + } + + Method [ <internal:phalcon> abstract public method isLazy ] { + } + + Method [ <internal:phalcon> abstract public method getHandler ] { + } + + Method [ <internal:phalcon> abstract public method map ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon> abstract public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon> abstract public method post ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon> abstract public method put ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon> abstract public method patch ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon> abstract public method head ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon> abstract public method delete ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon> abstract public method options ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\Micro\MiddlewareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [1] { + Method [ <internal:phalcon> abstract public method call ] { + + - Parameters [1] { + Parameter #0 [ <required> $application ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\ModelInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [11] { + Method [ <internal:phalcon> abstract static public method cloneResultMap ] { + + - Parameters [5] { + Parameter #0 [ <required> $base ] + Parameter #1 [ <required> $data ] + Parameter #2 [ <required> $columnMap ] + Parameter #3 [ <optional> $dirtyState ] + Parameter #4 [ <optional> $keepSnapshots ] + } + } + + Method [ <internal:phalcon> abstract static public method cloneResult ] { + + - Parameters [3] { + Parameter #0 [ <required> $base ] + Parameter #1 [ <required> $data ] + Parameter #2 [ <optional> $dirtyState ] + } + } + + Method [ <internal:phalcon> abstract static public method cloneResultMapHydrate ] { + + - Parameters [3] { + Parameter #0 [ <required> $data ] + Parameter #1 [ <required> $columnMap ] + Parameter #2 [ <required> $hydrationMode ] + } + } + + Method [ <internal:phalcon> abstract static public method find ] { + + - Parameters [1] { + Parameter #0 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon> abstract static public method findFirst ] { + + - Parameters [1] { + Parameter #0 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon> abstract static public method query ] { + + - Parameters [1] { + Parameter #0 [ <optional> $dependencyInjector ] + } + } + + Method [ <internal:phalcon> abstract static public method count ] { + + - Parameters [1] { + Parameter #0 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon> abstract static public method sum ] { + + - Parameters [1] { + Parameter #0 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon> abstract static public method maximum ] { + + - Parameters [1] { + Parameter #0 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon> abstract static public method minimum ] { + + - Parameters [1] { + Parameter #0 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon> abstract static public method average ] { + + - Parameters [1] { + Parameter #0 [ <optional> $parameters ] + } + } + } + + - Properties [0] { + } + + - Methods [25] { + Method [ <internal:phalcon> abstract public method setTransaction ] { + + - Parameters [1] { + Parameter #0 [ <required> $transaction ] + } + } + + Method [ <internal:phalcon> abstract public method getSource ] { + } + + Method [ <internal:phalcon> abstract public method getSchema ] { + } + + Method [ <internal:phalcon> abstract public method setConnectionService ] { + + - Parameters [1] { + Parameter #0 [ <required> $connectionService ] + } + } + + Method [ <internal:phalcon> abstract public method setWriteConnectionService ] { + + - Parameters [1] { + Parameter #0 [ <required> $connectionService ] + } + } + + Method [ <internal:phalcon> abstract public method setReadConnectionService ] { + + - Parameters [1] { + Parameter #0 [ <required> $connectionService ] + } + } + + Method [ <internal:phalcon> abstract public method getReadConnectionService ] { + } + + Method [ <internal:phalcon> abstract public method getWriteConnectionService ] { + } + + Method [ <internal:phalcon> abstract public method getReadConnection ] { + } + + Method [ <internal:phalcon> abstract public method getWriteConnection ] { + } + + Method [ <internal:phalcon> abstract public method assign ] { + + - Parameters [2] { + Parameter #0 [ <required> $data ] + Parameter #1 [ <optional> $columnMap ] + } + } + + Method [ <internal:phalcon> abstract public method fireEvent ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventName ] + } + } + + Method [ <internal:phalcon> abstract public method fireEventCancel ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventName ] + } + } + + Method [ <internal:phalcon> abstract public method appendMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon> abstract public method validationHasFailed ] { + } + + Method [ <internal:phalcon> abstract public method getMessages ] { + + - Parameters [1] { + Parameter #0 [ <optional> $filter ] + } + } + + Method [ <internal:phalcon> abstract public method save ] { + + - Parameters [2] { + Parameter #0 [ <optional> $data ] + Parameter #1 [ <optional> $whiteList ] + } + } + + Method [ <internal:phalcon> abstract public method create ] { + + - Parameters [2] { + Parameter #0 [ <optional> $data ] + Parameter #1 [ <optional> $whiteList ] + } + } + + Method [ <internal:phalcon> abstract public method update ] { + + - Parameters [2] { + Parameter #0 [ <optional> $data ] + Parameter #1 [ <optional> $whiteList ] + } + } + + Method [ <internal:phalcon> abstract public method delete ] { + } + + Method [ <internal:phalcon> abstract public method getOperationMade ] { + } + + Method [ <internal:phalcon> abstract public method refresh ] { + } + + Method [ <internal:phalcon> abstract public method readAttribute ] { + + - Parameters [1] { + Parameter #0 [ <required> $attribute ] + } + } + + Method [ <internal:phalcon> abstract public method writeAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> abstract public method getRelated ] { + + - Parameters [2] { + Parameter #0 [ <required> $alias ] + Parameter #1 [ <optional> $arguments ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\Model\BehaviorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ <internal:phalcon> abstract public method notify ] { + + - Parameters [2] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method missingMethod ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $method ] + Parameter #2 [ <optional> $arguments ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\Model\CriteriaInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ <internal:phalcon> abstract static public method fromInput ] { + + - Parameters [3] { + Parameter #0 [ <required> $dependencyInjector ] + Parameter #1 [ <required> $modelName ] + Parameter #2 [ <required> $data ] + } + } + } + + - Properties [0] { + } + + - Methods [24] { + Method [ <internal:phalcon> abstract public method setModelName ] { + + - Parameters [1] { + Parameter #0 [ <required> $modelName ] + } + } + + Method [ <internal:phalcon> abstract public method getModelName ] { + } + + Method [ <internal:phalcon> abstract public method bind ] { + + - Parameters [1] { + Parameter #0 [ <required> $bindParams ] + } + } + + Method [ <internal:phalcon> abstract public method bindTypes ] { + + - Parameters [1] { + Parameter #0 [ <required> $bindTypes ] + } + } + + Method [ <internal:phalcon> abstract public method columns ] { + + - Parameters [1] { + Parameter #0 [ <required> $columns ] + } + } + + Method [ <internal:phalcon> abstract public method join ] { + + - Parameters [4] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <optional> $conditions ] + Parameter #2 [ <optional> $alias ] + Parameter #3 [ <optional> $type ] + } + } + + Method [ <internal:phalcon> abstract public method where ] { + + - Parameters [1] { + Parameter #0 [ <required> $conditions ] + } + } + + Method [ <internal:phalcon> abstract public method conditions ] { + + - Parameters [1] { + Parameter #0 [ <required> $conditions ] + } + } + + Method [ <internal:phalcon> abstract public method orderBy ] { + + - Parameters [1] { + Parameter #0 [ <required> $orderColumns ] + } + } + + Method [ <internal:phalcon> abstract public method limit ] { + + - Parameters [2] { + Parameter #0 [ <required> $limit ] + Parameter #1 [ <optional> $offset ] + } + } + + Method [ <internal:phalcon> abstract public method forUpdate ] { + + - Parameters [1] { + Parameter #0 [ <optional> $forUpdate ] + } + } + + Method [ <internal:phalcon> abstract public method sharedLock ] { + + - Parameters [1] { + Parameter #0 [ <optional> $sharedLock ] + } + } + + Method [ <internal:phalcon> abstract public method andWhere ] { + + - Parameters [3] { + Parameter #0 [ <required> $conditions ] + Parameter #1 [ <optional> $bindParams ] + Parameter #2 [ <optional> $bindTypes ] + } + } + + Method [ <internal:phalcon> abstract public method orWhere ] { + + - Parameters [3] { + Parameter #0 [ <required> $conditions ] + Parameter #1 [ <optional> $bindParams ] + Parameter #2 [ <optional> $bindTypes ] + } + } + + Method [ <internal:phalcon> abstract public method betweenWhere ] { + + - Parameters [3] { + Parameter #0 [ <required> $expr ] + Parameter #1 [ <required> $minimum ] + Parameter #2 [ <required> $maximum ] + } + } + + Method [ <internal:phalcon> abstract public method notBetweenWhere ] { + + - Parameters [3] { + Parameter #0 [ <required> $expr ] + Parameter #1 [ <required> $minimum ] + Parameter #2 [ <required> $maximum ] + } + } + + Method [ <internal:phalcon> abstract public method inWhere ] { + + - Parameters [2] { + Parameter #0 [ <required> $expr ] + Parameter #1 [ <required> $values ] + } + } + + Method [ <internal:phalcon> abstract public method notInWhere ] { + + - Parameters [2] { + Parameter #0 [ <required> $expr ] + Parameter #1 [ <required> $values ] + } + } + + Method [ <internal:phalcon> abstract public method getWhere ] { + } + + Method [ <internal:phalcon> abstract public method getConditions ] { + } + + Method [ <internal:phalcon> abstract public method getLimit ] { + } + + Method [ <internal:phalcon> abstract public method getOrder ] { + } + + Method [ <internal:phalcon> abstract public method getParams ] { + } + + Method [ <internal:phalcon> abstract public method execute ] { + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\Model\ManagerInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [26] { + Method [ <internal:phalcon> abstract public method initialize ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method isInitialized ] { + + - Parameters [1] { + Parameter #0 [ <required> $modelName ] + } + } + + Method [ <internal:phalcon> abstract public method getLastInitialized ] { + } + + Method [ <internal:phalcon> abstract public method load ] { + + - Parameters [2] { + Parameter #0 [ <required> $modelName ] + Parameter #1 [ <required> $newInstance ] + } + } + + Method [ <internal:phalcon> abstract public method addHasOne ] { + + - Parameters [5] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $fields ] + Parameter #2 [ <required> $referencedModel ] + Parameter #3 [ <required> $referencedFields ] + Parameter #4 [ <optional> $options ] + } + } + + Method [ <internal:phalcon> abstract public method addBelongsTo ] { + + - Parameters [5] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $fields ] + Parameter #2 [ <required> $referencedModel ] + Parameter #3 [ <required> $referencedFields ] + Parameter #4 [ <optional> $options ] + } + } + + Method [ <internal:phalcon> abstract public method addHasMany ] { + + - Parameters [5] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $fields ] + Parameter #2 [ <required> $referencedModel ] + Parameter #3 [ <required> $referencedFields ] + Parameter #4 [ <optional> $options ] + } + } + + Method [ <internal:phalcon> abstract public method existsBelongsTo ] { + + - Parameters [2] { + Parameter #0 [ <required> $modelName ] + Parameter #1 [ <required> $modelRelation ] + } + } + + Method [ <internal:phalcon> abstract public method existsHasMany ] { + + - Parameters [2] { + Parameter #0 [ <required> $modelName ] + Parameter #1 [ <required> $modelRelation ] + } + } + + Method [ <internal:phalcon> abstract public method existsHasOne ] { + + - Parameters [2] { + Parameter #0 [ <required> $modelName ] + Parameter #1 [ <required> $modelRelation ] + } + } + + Method [ <internal:phalcon> abstract public method getBelongsToRecords ] { + + - Parameters [5] { + Parameter #0 [ <required> $method ] + Parameter #1 [ <required> $modelName ] + Parameter #2 [ <required> $modelRelation ] + Parameter #3 [ <required> $record ] + Parameter #4 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon> abstract public method getHasManyRecords ] { + + - Parameters [5] { + Parameter #0 [ <required> $method ] + Parameter #1 [ <required> $modelName ] + Parameter #2 [ <required> $modelRelation ] + Parameter #3 [ <required> $record ] + Parameter #4 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon> abstract public method getHasOneRecords ] { + + - Parameters [5] { + Parameter #0 [ <required> $method ] + Parameter #1 [ <required> $modelName ] + Parameter #2 [ <required> $modelRelation ] + Parameter #3 [ <required> $record ] + Parameter #4 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon> abstract public method getBelongsTo ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method getHasMany ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method getHasOne ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method getHasOneAndHasMany ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method getRelations ] { + + - Parameters [1] { + Parameter #0 [ <required> $modelName ] + } + } + + Method [ <internal:phalcon> abstract public method getRelationsBetween ] { + + - Parameters [2] { + Parameter #0 [ <required> $first ] + Parameter #1 [ <required> $second ] + } + } + + Method [ <internal:phalcon> abstract public method createQuery ] { + + - Parameters [1] { + Parameter #0 [ <required> $phql ] + } + } + + Method [ <internal:phalcon> abstract public method executeQuery ] { + + - Parameters [2] { + Parameter #0 [ <required> $phql ] + Parameter #1 [ <optional> $placeholders ] + } + } + + Method [ <internal:phalcon> abstract public method createBuilder ] { + + - Parameters [1] { + Parameter #0 [ <optional> $params ] + } + } + + Method [ <internal:phalcon> abstract public method addBehavior ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $behavior ] + } + } + + Method [ <internal:phalcon> abstract public method notifyEvent ] { + + - Parameters [2] { + Parameter #0 [ <required> $eventName ] + Parameter #1 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method missingMethod ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $eventName ] + Parameter #2 [ <required> $data ] + } + } + + Method [ <internal:phalcon> abstract public method getLastQuery ] { + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\Model\MessageInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [6] { + Method [ <internal:phalcon> abstract public method setType ] { + + - Parameters [1] { + Parameter #0 [ <required> $type ] + } + } + + Method [ <internal:phalcon> abstract public method getType ] { + } + + Method [ <internal:phalcon> abstract public method setMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon> abstract public method getMessage ] { + } + + Method [ <internal:phalcon> abstract public method setField ] { + + - Parameters [1] { + Parameter #0 [ <required> $field ] + } + } + + Method [ <internal:phalcon> abstract public method getField ] { + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\Model\MetaDataInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [26] { + Method [ <internal:phalcon> abstract public method setStrategy ] { + + - Parameters [1] { + Parameter #0 [ <required> $strategy ] + } + } + + Method [ <internal:phalcon> abstract public method getStrategy ] { + } + + Method [ <internal:phalcon> abstract public method readMetaData ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method readMetaDataIndex ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $index ] + } + } + + Method [ <internal:phalcon> abstract public method writeMetaDataIndex ] { + + - Parameters [4] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $index ] + Parameter #2 [ <required> $data ] + Parameter #3 [ <required> $replace ] + } + } + + Method [ <internal:phalcon> abstract public method readColumnMap ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method readColumnMapIndex ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $index ] + } + } + + Method [ <internal:phalcon> abstract public method getAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method getPrimaryKeyAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method getNonPrimaryKeyAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method getNotNullAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method getDataTypes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method getDataTypesNumeric ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method getIdentityField ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method getBindTypes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method getAutomaticCreateAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method getAutomaticUpdateAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method setAutomaticCreateAttributes ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $attributes ] + Parameter #2 [ <required> $replace ] + } + } + + Method [ <internal:phalcon> abstract public method setAutomaticUpdateAttributes ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $attributes ] + Parameter #2 [ <required> $replace ] + } + } + + Method [ <internal:phalcon> abstract public method getColumnMap ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method getReverseColumnMap ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> abstract public method hasAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $attribute ] + } + } + + Method [ <internal:phalcon> abstract public method isEmpty ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method reset ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method read ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon> abstract public method write ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $data ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\Model\QueryInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ <internal:phalcon> abstract public method parse ] { + } + + Method [ <internal:phalcon> abstract public method execute ] { + + - Parameters [2] { + Parameter #0 [ <optional> $bindParams ] + Parameter #1 [ <optional> $bindTypes ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\Model\Query\BuilderInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [29] { + Method [ <internal:phalcon> abstract public method distinct ] { + + - Parameters [1] { + Parameter #0 [ <required> $distinct ] + } + } + + Method [ <internal:phalcon> abstract public method getDistinct ] { + } + + Method [ <internal:phalcon> abstract public method columns ] { + + - Parameters [1] { + Parameter #0 [ <required> $columns ] + } + } + + Method [ <internal:phalcon> abstract public method getColumns ] { + } + + Method [ <internal:phalcon> abstract public method from ] { + + - Parameters [1] { + Parameter #0 [ <required> $models ] + } + } + + Method [ <internal:phalcon> abstract public method addFrom ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <optional> $alias ] + } + } + + Method [ <internal:phalcon> abstract public method getFrom ] { + } + + Method [ <internal:phalcon> abstract public method join ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <optional> $conditions ] + Parameter #2 [ <optional> $alias ] + } + } + + Method [ <internal:phalcon> abstract public method innerJoin ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <optional> $conditions ] + Parameter #2 [ <optional> $alias ] + } + } + + Method [ <internal:phalcon> abstract public method leftJoin ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <optional> $conditions ] + Parameter #2 [ <optional> $alias ] + } + } + + Method [ <internal:phalcon> abstract public method rightJoin ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <optional> $conditions ] + Parameter #2 [ <optional> $alias ] + } + } + + Method [ <internal:phalcon> abstract public method where ] { + + - Parameters [3] { + Parameter #0 [ <required> $conditions ] + Parameter #1 [ <optional> $bindParams ] + Parameter #2 [ <optional> $bindTypes ] + } + } + + Method [ <internal:phalcon> abstract public method andWhere ] { + + - Parameters [3] { + Parameter #0 [ <required> $conditions ] + Parameter #1 [ <optional> $bindParams ] + Parameter #2 [ <optional> $bindTypes ] + } + } + + Method [ <internal:phalcon> abstract public method orWhere ] { + + - Parameters [3] { + Parameter #0 [ <required> $conditions ] + Parameter #1 [ <optional> $bindParams ] + Parameter #2 [ <optional> $bindTypes ] + } + } + + Method [ <internal:phalcon> abstract public method betweenWhere ] { + + - Parameters [3] { + Parameter #0 [ <required> $expr ] + Parameter #1 [ <required> $minimum ] + Parameter #2 [ <required> $maximum ] + } + } + + Method [ <internal:phalcon> abstract public method notBetweenWhere ] { + + - Parameters [3] { + Parameter #0 [ <required> $expr ] + Parameter #1 [ <required> $minimum ] + Parameter #2 [ <required> $maximum ] + } + } + + Method [ <internal:phalcon> abstract public method inWhere ] { + + - Parameters [2] { + Parameter #0 [ <required> $expr ] + Parameter #1 [ <required> $values ] + } + } + + Method [ <internal:phalcon> abstract public method notInWhere ] { + + - Parameters [2] { + Parameter #0 [ <required> $expr ] + Parameter #1 [ <required> $values ] + } + } + + Method [ <internal:phalcon> abstract public method getWhere ] { + } + + Method [ <internal:phalcon> abstract public method orderBy ] { + + - Parameters [1] { + Parameter #0 [ <required> $orderBy ] + } + } + + Method [ <internal:phalcon> abstract public method getOrderBy ] { + } + + Method [ <internal:phalcon> abstract public method having ] { + + - Parameters [1] { + Parameter #0 [ <required> $having ] + } + } + + Method [ <internal:phalcon> abstract public method getHaving ] { + } + + Method [ <internal:phalcon> abstract public method limit ] { + + - Parameters [2] { + Parameter #0 [ <required> $limit ] + Parameter #1 [ <optional> $offset ] + } + } + + Method [ <internal:phalcon> abstract public method getLimit ] { + } + + Method [ <internal:phalcon> abstract public method groupBy ] { + + - Parameters [1] { + Parameter #0 [ <required> $group ] + } + } + + Method [ <internal:phalcon> abstract public method getGroupBy ] { + } + + Method [ <internal:phalcon> abstract public method getPhql ] { + } + + Method [ <internal:phalcon> abstract public method getQuery ] { + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\Model\Query\StatusInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [3] { + Method [ <internal:phalcon> abstract public method getModel ] { + } + + Method [ <internal:phalcon> abstract public method getMessages ] { + } + + Method [ <internal:phalcon> abstract public method success ] { + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\Model\RelationInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [12] { + Method [ <internal:phalcon> abstract public method setIntermediateRelation ] { + + - Parameters [3] { + Parameter #0 [ <required> $intermediateFields ] + Parameter #1 [ <required> $intermediateModel ] + Parameter #2 [ <required> $intermediateReferencedFields ] + } + } + + Method [ <internal:phalcon> abstract public method getType ] { + } + + Method [ <internal:phalcon> abstract public method getReferencedModel ] { + } + + Method [ <internal:phalcon> abstract public method getFields ] { + } + + Method [ <internal:phalcon> abstract public method getReferencedFields ] { + } + + Method [ <internal:phalcon> abstract public method getOptions ] { + } + + Method [ <internal:phalcon> abstract public method isForeignKey ] { + } + + Method [ <internal:phalcon> abstract public method getForeignKey ] { + } + + Method [ <internal:phalcon> abstract public method isThrough ] { + } + + Method [ <internal:phalcon> abstract public method getIntermediateFields ] { + } + + Method [ <internal:phalcon> abstract public method getIntermediateModel ] { + } + + Method [ <internal:phalcon> abstract public method getIntermediateReferencedFields ] { + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\Model\ResultInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [1] { + Method [ <internal:phalcon> abstract public method setDirtyState ] { + + - Parameters [1] { + Parameter #0 [ <required> $dirtyState ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\Model\ResultsetInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [7] { + Method [ <internal:phalcon> abstract public method getType ] { + } + + Method [ <internal:phalcon> abstract public method getFirst ] { + } + + Method [ <internal:phalcon> abstract public method getLast ] { + } + + Method [ <internal:phalcon> abstract public method setIsFresh ] { + + - Parameters [1] { + Parameter #0 [ <required> $isFresh ] + } + } + + Method [ <internal:phalcon> abstract public method isFresh ] { + } + + Method [ <internal:phalcon> abstract public method getCache ] { + } + + Method [ <internal:phalcon> abstract public method toArray ] { + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\Model\TransactionInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [11] { + Method [ <internal:phalcon> abstract public method setTransactionManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $manager ] + } + } + + Method [ <internal:phalcon> abstract public method begin ] { + } + + Method [ <internal:phalcon> abstract public method commit ] { + } + + Method [ <internal:phalcon> abstract public method rollback ] { + + - Parameters [2] { + Parameter #0 [ <optional> $rollbackMessage ] + Parameter #1 [ <optional> $rollbackRecord ] + } + } + + Method [ <internal:phalcon> abstract public method getConnection ] { + } + + Method [ <internal:phalcon> abstract public method setIsNewTransaction ] { + + - Parameters [1] { + Parameter #0 [ <required> $isNew ] + } + } + + Method [ <internal:phalcon> abstract public method setRollbackOnAbort ] { + + - Parameters [1] { + Parameter #0 [ <required> $rollbackOnAbort ] + } + } + + Method [ <internal:phalcon> abstract public method isManaged ] { + } + + Method [ <internal:phalcon> abstract public method getMessages ] { + } + + Method [ <internal:phalcon> abstract public method isValid ] { + } + + Method [ <internal:phalcon> abstract public method setRollbackedRecord ] { + + - Parameters [1] { + Parameter #0 [ <required> $record ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\Model\Transaction\ManagerInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [8] { + Method [ <internal:phalcon> abstract public method has ] { + } + + Method [ <internal:phalcon> abstract public method get ] { + + - Parameters [1] { + Parameter #0 [ <optional> $autoBegin ] + } + } + + Method [ <internal:phalcon> abstract public method rollbackPendent ] { + } + + Method [ <internal:phalcon> abstract public method commit ] { + } + + Method [ <internal:phalcon> abstract public method rollback ] { + + - Parameters [1] { + Parameter #0 [ <optional> $collect ] + } + } + + Method [ <internal:phalcon> abstract public method notifyRollback ] { + + - Parameters [1] { + Parameter #0 [ <required> $transaction ] + } + } + + Method [ <internal:phalcon> abstract public method notifyCommit ] { + + - Parameters [1] { + Parameter #0 [ <required> $transaction ] + } + } + + Method [ <internal:phalcon> abstract public method collectTransactions ] { + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\Model\ValidatorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ <internal:phalcon> abstract public method getMessages ] { + } + + Method [ <internal:phalcon> abstract public method validate ] { + + - Parameters [1] { + Parameter #0 [ <required> $record ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\ModuleDefinitionInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ <internal:phalcon> abstract public method registerAutoloaders ] { + } + + Method [ <internal:phalcon> abstract public method registerServices ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\RouterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [25] { + Method [ <internal:phalcon> abstract public method setDefaultModule ] { + + - Parameters [1] { + Parameter #0 [ <required> $moduleName ] + } + } + + Method [ <internal:phalcon> abstract public method setDefaultController ] { + + - Parameters [1] { + Parameter #0 [ <required> $controllerName ] + } + } + + Method [ <internal:phalcon> abstract public method setDefaultAction ] { + + - Parameters [1] { + Parameter #0 [ <required> $actionName ] + } + } + + Method [ <internal:phalcon> abstract public method setDefaults ] { + + - Parameters [1] { + Parameter #0 [ <required> $defaults ] + } + } + + Method [ <internal:phalcon> abstract public method handle ] { + + - Parameters [1] { + Parameter #0 [ <optional> $uri ] + } + } + + Method [ <internal:phalcon> abstract public method add ] { + + - Parameters [3] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + Parameter #2 [ <optional> $httpMethods ] + } + } + + Method [ <internal:phalcon> abstract public method addGet ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon> abstract public method addPost ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon> abstract public method addPut ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon> abstract public method addDelete ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon> abstract public method addOptions ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon> abstract public method addPatch ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon> abstract public method addHead ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon> abstract public method clear ] { + } + + Method [ <internal:phalcon> abstract public method getModuleName ] { + } + + Method [ <internal:phalcon> abstract public method getControllerName ] { + } + + Method [ <internal:phalcon> abstract public method getActionName ] { + } + + Method [ <internal:phalcon> abstract public method getParams ] { + } + + Method [ <internal:phalcon> abstract public method getMatchedRoute ] { + } + + Method [ <internal:phalcon> abstract public method getMatches ] { + } + + Method [ <internal:phalcon> abstract public method wasMatched ] { + } + + Method [ <internal:phalcon> abstract public method getRoutes ] { + } + + Method [ <internal:phalcon> abstract public method getRouteById ] { + + - Parameters [1] { + Parameter #0 [ <required> $id ] + } + } + + Method [ <internal:phalcon> abstract public method getRouteByName ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> abstract public method isExactControllerName ] { + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\Router\RouteInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ <internal:phalcon> abstract static public method reset ] { + } + } + + - Properties [0] { + } + + - Methods [11] { + Method [ <internal:phalcon> abstract public method compilePattern ] { + + - Parameters [1] { + Parameter #0 [ <required> $pattern ] + } + } + + Method [ <internal:phalcon> abstract public method via ] { + + - Parameters [1] { + Parameter #0 [ <required> $httpMethods ] + } + } + + Method [ <internal:phalcon> abstract public method reConfigure ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon> abstract public method getName ] { + } + + Method [ <internal:phalcon> abstract public method setName ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> abstract public method setHttpMethods ] { + + - Parameters [1] { + Parameter #0 [ <required> $httpMethods ] + } + } + + Method [ <internal:phalcon> abstract public method getRouteId ] { + } + + Method [ <internal:phalcon> abstract public method getPattern ] { + } + + Method [ <internal:phalcon> abstract public method getCompiledPattern ] { + } + + Method [ <internal:phalcon> abstract public method getPaths ] { + } + + Method [ <internal:phalcon> abstract public method getHttpMethods ] { + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\UrlInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [6] { + Method [ <internal:phalcon> abstract public method setBaseUri ] { + + - Parameters [1] { + Parameter #0 [ <required> $baseUri ] + } + } + + Method [ <internal:phalcon> abstract public method getBaseUri ] { + } + + Method [ <internal:phalcon> abstract public method setBasePath ] { + + - Parameters [1] { + Parameter #0 [ <required> $basePath ] + } + } + + Method [ <internal:phalcon> abstract public method getBasePath ] { + } + + Method [ <internal:phalcon> abstract public method get ] { + + - Parameters [3] { + Parameter #0 [ <optional> $uri ] + Parameter #1 [ <optional> $args ] + Parameter #2 [ <optional> $local ] + } + } + + Method [ <internal:phalcon> abstract public method path ] { + + - Parameters [1] { + Parameter #0 [ <optional> $path ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\ViewInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [39] { + Method [ <internal:phalcon> abstract public method setViewsDir ] { + + - Parameters [1] { + Parameter #0 [ <required> $viewsDir ] + } + } + + Method [ <internal:phalcon> abstract public method getViewsDir ] { + } + + Method [ <internal:phalcon> abstract public method setLayoutsDir ] { + + - Parameters [1] { + Parameter #0 [ <required> $layoutsDir ] + } + } + + Method [ <internal:phalcon> abstract public method getLayoutsDir ] { + } + + Method [ <internal:phalcon> abstract public method setPartialsDir ] { + + - Parameters [1] { + Parameter #0 [ <required> $partialsDir ] + } + } + + Method [ <internal:phalcon> abstract public method getPartialsDir ] { + } + + Method [ <internal:phalcon> abstract public method setBasePath ] { + + - Parameters [1] { + Parameter #0 [ <required> $basePath ] + } + } + + Method [ <internal:phalcon> abstract public method getCurrentRenderLevel ] { + } + + Method [ <internal:phalcon> abstract public method getRenderLevel ] { + } + + Method [ <internal:phalcon> abstract public method setRenderLevel ] { + + - Parameters [1] { + Parameter #0 [ <required> $level ] + } + } + + Method [ <internal:phalcon> abstract public method setMainView ] { + + - Parameters [1] { + Parameter #0 [ <required> $viewPath ] + } + } + + Method [ <internal:phalcon> abstract public method getMainView ] { + } + + Method [ <internal:phalcon> abstract public method setLayout ] { + + - Parameters [1] { + Parameter #0 [ <required> $layout ] + } + } + + Method [ <internal:phalcon> abstract public method getLayout ] { + } + + Method [ <internal:phalcon> abstract public method setTemplateBefore ] { + + - Parameters [1] { + Parameter #0 [ <required> $templateBefore ] + } + } + + Method [ <internal:phalcon> abstract public method cleanTemplateBefore ] { + } + + Method [ <internal:phalcon> abstract public method setTemplateAfter ] { + + - Parameters [1] { + Parameter #0 [ <required> $templateAfter ] + } + } + + Method [ <internal:phalcon> abstract public method cleanTemplateAfter ] { + } + + Method [ <internal:phalcon> abstract public method setParamToView ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> abstract public method setVar ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> abstract public method getParamsToView ] { + } + + Method [ <internal:phalcon> abstract public method getControllerName ] { + } + + Method [ <internal:phalcon> abstract public method getActionName ] { + } + + Method [ <internal:phalcon> abstract public method getParams ] { + } + + Method [ <internal:phalcon> abstract public method start ] { + } + + Method [ <internal:phalcon> abstract public method registerEngines ] { + + - Parameters [1] { + Parameter #0 [ <required> $engines ] + } + } + + Method [ <internal:phalcon> abstract public method render ] { + + - Parameters [3] { + Parameter #0 [ <required> $controllerName ] + Parameter #1 [ <required> $actionName ] + Parameter #2 [ <optional> $params ] + } + } + + Method [ <internal:phalcon> abstract public method pick ] { + + - Parameters [1] { + Parameter #0 [ <required> $renderView ] + } + } + + Method [ <internal:phalcon> abstract public method partial ] { + + - Parameters [1] { + Parameter #0 [ <required> $partialPath ] + } + } + + Method [ <internal:phalcon> abstract public method finish ] { + } + + Method [ <internal:phalcon> abstract public method getCache ] { + } + + Method [ <internal:phalcon> abstract public method cache ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon> abstract public method setContent ] { + + - Parameters [1] { + Parameter #0 [ <required> $content ] + } + } + + Method [ <internal:phalcon> abstract public method getContent ] { + } + + Method [ <internal:phalcon> abstract public method getActiveRenderPath ] { + } + + Method [ <internal:phalcon> abstract public method disable ] { + } + + Method [ <internal:phalcon> abstract public method enable ] { + } + + Method [ <internal:phalcon> abstract public method reset ] { + } + + Method [ <internal:phalcon> abstract public method isDisabled ] { + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Mvc\View\EngineInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [3] { + Method [ <internal:phalcon> abstract public method getContent ] { + } + + Method [ <internal:phalcon> abstract public method partial ] { + + - Parameters [1] { + Parameter #0 [ <required> $partialPath ] + } + } + + Method [ <internal:phalcon> abstract public method render ] { + + - Parameters [3] { + Parameter #0 [ <required> $path ] + Parameter #1 [ <required> $params ] + Parameter #2 [ <optional> $mustClean ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Paginator\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ <internal:phalcon> abstract public method setCurrentPage ] { + + - Parameters [1] { + Parameter #0 [ <required> $page ] + } + } + + Method [ <internal:phalcon> abstract public method getPaginate ] { + + - Parameters [0] { + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Session\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [10] { + Method [ <internal:phalcon> abstract public method start ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method setOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon> abstract public method getOptions ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $index ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon> abstract public method set ] { + + - Parameters [2] { + Parameter #0 [ <required> $index ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> abstract public method has ] { + + - Parameters [1] { + Parameter #0 [ <required> $index ] + } + } + + Method [ <internal:phalcon> abstract public method remove ] { + + - Parameters [1] { + Parameter #0 [ <required> $index ] + } + } + + Method [ <internal:phalcon> abstract public method getId ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method isStarted ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> abstract public method destroy ] { + + - Parameters [1] { + Parameter #0 [ <optional> $session_id ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Session\BagInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [6] { + Method [ <internal:phalcon> abstract public method initialize ] { + } + + Method [ <internal:phalcon> abstract public method destroy ] { + } + + Method [ <internal:phalcon> abstract public method set ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> abstract public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon> abstract public method has ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon> abstract public method remove ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Translate\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ <internal:phalcon> abstract public method query ] { + + - Parameters [2] { + Parameter #0 [ <required> $index ] + Parameter #1 [ <optional> $placeholders ] + } + } + + Method [ <internal:phalcon> abstract public method exists ] { + + - Parameters [1] { + Parameter #0 [ <required> $index ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Validation\ValidatorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [4] { + Method [ <internal:phalcon> abstract public method isSetOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon> abstract public method getOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon> abstract public method setOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> abstract public method validate ] { + + - Parameters [2] { + Parameter #0 [ <required> $validator ] + Parameter #1 [ <required> $attribute ] + } + } + } + } + + Interface [ <internal:phalcon> interface Phalcon\Validation\MessageInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [9] { + Method [ <internal:phalcon> abstract public method setType ] { + + - Parameters [1] { + Parameter #0 [ <required> $type ] + } + } + + Method [ <internal:phalcon> abstract public method getType ] { + } + + Method [ <internal:phalcon> abstract public method setCode ] { + + - Parameters [1] { + Parameter #0 [ <required> $code ] + } + } + + Method [ <internal:phalcon> abstract public method getCode ] { + } + + Method [ <internal:phalcon> abstract public method setMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon> abstract public method getMessage ] { + } + + Method [ <internal:phalcon> abstract public method setField ] { + + - Parameters [1] { + Parameter #0 [ <required> $field ] + } + } + + Method [ <internal:phalcon> abstract public method getField ] { + } + + Method [ <internal:phalcon> abstract public method __toString ] { + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Db\Adapter implements Phalcon\Events\EventsAwareInterface, Phalcon\Db\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [1] { + Property [ protected static $_connectionConsecutive ] + } + + - Static methods [0] { + } + + - Properties [11] { + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_descriptor ] + Property [ <default> protected $_dialectType ] + Property [ <default> protected $_type ] + Property [ <default> protected $_dialect ] + Property [ <default> protected $_connectionId ] + Property [ <default> protected $_sqlStatement ] + Property [ <default> protected $_sqlVariables ] + Property [ <default> protected $_sqlBindTypes ] + Property [ <default> protected $_transactionLevel ] + Property [ <default> protected $_transactionsWithSavepoints ] + } + + - Methods [67] { + Method [ <internal:phalcon, ctor> protected method __construct ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + } + + Method [ <internal:phalcon> public method setDialect ] { + + - Parameters [1] { + Parameter #0 [ <required> $dialect ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method getDialect ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method fetchOne ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <optional> $fetchMode ] + Parameter #2 [ <optional> $placeholders ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method fetchAll ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <optional> $fetchMode ] + Parameter #2 [ <optional> $placeholders ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method insert ] { + + - Parameters [4] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <required> $values ] + Parameter #2 [ <optional> $fields ] + Parameter #3 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method update ] { + + - Parameters [5] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <required> $fields ] + Parameter #2 [ <required> $values ] + Parameter #3 [ <optional> $whereCondition ] + Parameter #4 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method delete ] { + + - Parameters [4] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $whereCondition ] + Parameter #2 [ <optional> $placeholders ] + Parameter #3 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method getColumnList ] { + + - Parameters [1] { + Parameter #0 [ <required> $columnList ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method limit ] { + + - Parameters [2] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <required> $number ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method tableExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method viewExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method forUpdate ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method sharedLock ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method createTable ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $definition ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method dropTable ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + Parameter #2 [ <optional> $ifExists ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method createView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method dropView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <optional> $schemaName ] + Parameter #2 [ <optional> $ifExists ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method addColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method modifyColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method dropColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $columnName ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method addIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method dropIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $indexName ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method addPrimaryKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method dropPrimaryKey ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method addForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $reference ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method dropForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $referenceName ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method getColumnDefinition ] { + + - Parameters [1] { + Parameter #0 [ <required> $column ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method listTables ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method listViews ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method describeIndexes ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method describeReferences ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method tableOptions ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method createSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method releaseSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method rollbackSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method setNestedTransactionsWithSavepoints ] { + + - Parameters [1] { + Parameter #0 [ <required> $nestedTransactionsWithSavepoints ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method isNestedTransactionsWithSavepoints ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method getNestedTransactionSavepointName ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method getDefaultIdValue ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method supportSequences ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method useExplicitIdValue ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method getDescriptor ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method getConnectionId ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method getSQLStatement ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method getRealSQLStatement ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method getSQLVariables ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method getSQLBindTypes ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method getType ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\AdapterInterface> public method getDialectType ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\AdapterInterface> abstract public method connect ] { + + - Parameters [1] { + Parameter #0 [ <optional> $descriptor ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\AdapterInterface> abstract public method query ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlStatement ] + Parameter #1 [ <optional> $placeholders ] + Parameter #2 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\AdapterInterface> abstract public method execute ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlStatement ] + Parameter #1 [ <optional> $placeholders ] + Parameter #2 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\AdapterInterface> abstract public method affectedRows ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\AdapterInterface> abstract public method close ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\AdapterInterface> abstract public method escapeIdentifier ] { + + - Parameters [1] { + Parameter #0 [ <required> $identifier ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\AdapterInterface> abstract public method escapeString ] { + + - Parameters [1] { + Parameter #0 [ <required> $str ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\AdapterInterface> abstract public method convertBoundParams ] { + + - Parameters [2] { + Parameter #0 [ <required> $sqlStatement ] + Parameter #1 [ <required> $params ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\AdapterInterface> abstract public method lastInsertId ] { + + - Parameters [1] { + Parameter #0 [ <optional> $sequenceName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\AdapterInterface> abstract public method begin ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\AdapterInterface> abstract public method rollback ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\AdapterInterface> abstract public method commit ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\AdapterInterface> abstract public method isUnderTransaction ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\AdapterInterface> abstract public method getInternalHandler ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\AdapterInterface> abstract public method describeColumns ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\DI\Injectable implements Phalcon\DI\InjectionAwareInterface, Phalcon\Events\EventsAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_eventsManager ] + } + + - Methods [5] { + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method __get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\DI implements Phalcon\DiInterface ] { + + - Constants [0] { + } + + - Static properties [1] { + Property [ protected static $_default ] + } + + - Static methods [3] { + Method [ <internal:phalcon, prototype Phalcon\DiInterface> static public method setDefault ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DiInterface> static public method getDefault ] { + } + + Method [ <internal:phalcon, prototype Phalcon\DiInterface> static public method reset ] { + } + } + + - Properties [0] { + } + + - Methods [20] { + Method [ <internal:phalcon, ctor> public method __construct ] { + } + + Method [ <internal:phalcon, prototype Phalcon\DiInterface> public method set ] { + + - Parameters [3] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <optional> $shared ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DiInterface> public method remove ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> public method getRaw ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DiInterface> public method getService ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DiInterface> public method setService ] { + + - Parameters [1] { + Parameter #0 [ <required> $rawDefinition ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DiInterface> public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DiInterface> public method getShared ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DiInterface> public method has ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DiInterface> public method wasFreshInstance ] { + } + + Method [ <internal:phalcon, prototype Phalcon\DiInterface> public method getServices ] { + } + + Method [ <internal:phalcon> public method attempt ] { + + - Parameters [3] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <optional> $shared ] + } + } + + Method [ <internal:phalcon> public method setShared ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <required> $definition ] + } + } + + Method [ <internal, deprecated:phalcon> public method setRaw ] { + + - Parameters [1] { + Parameter #0 [ <required> $rawDefinition ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon> public method __call ] { + + - Parameters [2] { + Parameter #0 [ <required> $method ] + Parameter #1 [ <optional> $arguments ] + } + } + + Method [ <internal:phalcon> public method __clone ] { + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Forms\Element implements Phalcon\Forms\ElementInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ <default> protected $_form ] + Property [ <default> protected $_name ] + Property [ <default> protected $_value ] + Property [ <default> protected $_label ] + Property [ <default> protected $_attributes ] + Property [ <default> protected $_validators ] + Property [ <default> protected $_filters ] + Property [ <default> protected $_options ] + Property [ <default> protected $_messages ] + } + + - Methods [33] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method setForm ] { + + - Parameters [1] { + Parameter #0 [ <required> $form ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method getForm ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method setName ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method getName ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method setFilters ] { + + - Parameters [1] { + Parameter #0 [ <required> $filters ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method addFilter ] { + + - Parameters [1] { + Parameter #0 [ <required> $filter ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method getFilters ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method addValidators ] { + + - Parameters [2] { + Parameter #0 [ <required> $validators ] + Parameter #1 [ <optional> $merge ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method addValidator ] { + + - Parameters [1] { + Parameter #0 [ <required> $validator ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method getValidators ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method prepareAttributes ] { + + - Parameters [2] { + Parameter #0 [ <optional> $attributes ] + Parameter #1 [ <optional> $useChecked ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method setAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method getAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method setAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method getAttributes ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method setUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method getUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method setUserOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method getUserOptions ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method setLabel ] { + + - Parameters [1] { + Parameter #0 [ <required> $label ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method getLabel ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method label ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method setDefault ] { + + - Parameters [1] { + Parameter #0 [ <required> $value ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method getDefault ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method getValue ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method getMessages ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method hasMessages ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method setMessages ] { + + - Parameters [1] { + Parameter #0 [ <required> $group ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method appendMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Forms\ElementInterface> public method clear ] { + } + + Method [ <internal:phalcon> public method __toString ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\ElementInterface> abstract public method render ] { + + - Parameters [1] { + Parameter #0 [ <optional> $attributes ] + } + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Validation\Validator implements Phalcon\Validation\ValidatorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_options ] + } + + - Methods [5] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Validation\ValidatorInterface> public method isSetOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Validation\ValidatorInterface> public method getOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Validation\ValidatorInterface> public method setOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\ValidatorInterface> abstract public method validate ] { + + - Parameters [2] { + Parameter #0 [ <required> $validator ] + Parameter #1 [ <required> $attribute ] + } + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Mvc\Model\Validator implements Phalcon\Mvc\Model\ValidatorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_options ] + Property [ <default> protected $_messages ] + } + + - Methods [7] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon> protected method appendMessage ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ValidatorInterface> public method getMessages ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method getOptions ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method getOption ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method isSetOption ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\ValidatorInterface> abstract public method validate ] { + + - Parameters [1] { + Parameter #0 [ <required> $record ] + } + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Cache\Backend implements Phalcon\Cache\BackendInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [7] { + Property [ <default> protected $_frontend ] + Property [ <default> protected $_options ] + Property [ <default> protected $_prefix ] + Property [ <default> protected $_lastKey ] + Property [ <default> protected $_lastLifetime ] + Property [ <default> protected $_fresh ] + Property [ <default> protected $_started ] + } + + - Methods [16] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $frontend ] + Parameter #1 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Cache\BackendInterface> public method start ] { + + - Parameters [2] { + Parameter #0 [ <required> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Cache\BackendInterface> public method stop ] { + + - Parameters [1] { + Parameter #0 [ <optional> $stopBuffer ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Cache\BackendInterface> public method getFrontend ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Cache\BackendInterface> public method getOptions ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Cache\BackendInterface> public method isFresh ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Cache\BackendInterface> public method isStarted ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Cache\BackendInterface> public method setLastKey ] { + + - Parameters [1] { + Parameter #0 [ <required> $lastKey ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Cache\BackendInterface> public method getLastKey ] { + } + + Method [ <internal:phalcon> public method getLifetime ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\BackendInterface> abstract public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\BackendInterface> abstract public method save ] { + + - Parameters [4] { + Parameter #0 [ <optional> $keyName ] + Parameter #1 [ <optional> $content ] + Parameter #2 [ <optional> $lifetime ] + Parameter #3 [ <optional> $stopBuffer ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\BackendInterface> abstract public method delete ] { + + - Parameters [1] { + Parameter #0 [ <required> $keyName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\BackendInterface> abstract public method queryKeys ] { + + - Parameters [1] { + Parameter #0 [ <optional> $prefix ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\BackendInterface> abstract public method exists ] { + + - Parameters [2] { + Parameter #0 [ <optional> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\BackendInterface> abstract public method flush ] { + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Mvc\Model\MetaData implements Phalcon\DI\InjectionAwareInterface, Phalcon\Mvc\Model\MetaDataInterface ] { + + - Constants [14] { + Constant [ integer MODELS_ATTRIBUTES ] { 0 } + Constant [ integer MODELS_PRIMARY_KEY ] { 1 } + Constant [ integer MODELS_NON_PRIMARY_KEY ] { 2 } + Constant [ integer MODELS_NOT_NULL ] { 3 } + Constant [ integer MODELS_DATA_TYPES ] { 4 } + Constant [ integer MODELS_DATA_TYPES_NUMERIC ] { 5 } + Constant [ integer MODELS_DATE_AT ] { 6 } + Constant [ integer MODELS_DATE_IN ] { 7 } + Constant [ integer MODELS_IDENTITY_COLUMN ] { 8 } + Constant [ integer MODELS_DATA_TYPES_BIND ] { 9 } + Constant [ integer MODELS_AUTOMATIC_DEFAULT_INSERT ] { 10 } + Constant [ integer MODELS_AUTOMATIC_DEFAULT_UPDATE ] { 11 } + Constant [ integer MODELS_COLUMN_MAP ] { 0 } + Constant [ integer MODELS_REVERSE_COLUMN_MAP ] { 1 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_strategy ] + Property [ <default> protected $_metaData ] + Property [ <default> protected $_columnMap ] + } + + - Methods [29] { + Method [ <internal:phalcon> protected method _initialize ] { + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method setStrategy ] { + + - Parameters [1] { + Parameter #0 [ <required> $strategy ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getStrategy ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readMetaData ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readMetaDataIndex ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $index ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method writeMetaDataIndex ] { + + - Parameters [4] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $index ] + Parameter #2 [ <required> $data ] + Parameter #3 [ <required> $replace ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readColumnMap ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readColumnMapIndex ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $index ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getPrimaryKeyAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getNonPrimaryKeyAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getNotNullAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getDataTypes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getDataTypesNumeric ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getIdentityField ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getBindTypes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getAutomaticCreateAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getAutomaticUpdateAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method setAutomaticCreateAttributes ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $attributes ] + Parameter #2 [ <required> $replace ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method setAutomaticUpdateAttributes ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $attributes ] + Parameter #2 [ <required> $replace ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getColumnMap ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getReverseColumnMap ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method hasAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $attribute ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method isEmpty ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MetaDataInterface> public method reset ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaDataInterface> abstract public method read ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaDataInterface> abstract public method write ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $data ] + } + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Db\Adapter\Pdo extends Phalcon\Db\Adapter implements Phalcon\Db\AdapterInterface, Phalcon\Events\EventsAwareInterface ] { + + - Constants [0] { + } + + - Static properties [1] { + Property [ protected static $_connectionConsecutive ] + } + + - Static methods [0] { + } + + - Properties [13] { + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_descriptor ] + Property [ <default> protected $_dialectType ] + Property [ <default> protected $_type ] + Property [ <default> protected $_dialect ] + Property [ <default> protected $_connectionId ] + Property [ <default> protected $_sqlStatement ] + Property [ <default> protected $_sqlVariables ] + Property [ <default> protected $_sqlBindTypes ] + Property [ <default> protected $_transactionsWithSavepoints ] + Property [ <default> protected $_pdo ] + Property [ <default> protected $_affectedRows ] + Property [ <default> protected $_transactionLevel ] + } + + - Methods [70] { + Method [ <internal:phalcon, overwrites Phalcon\Db\Adapter, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $descriptor ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\AdapterInterface, prototype Phalcon\Db\AdapterInterface> public method connect ] { + + - Parameters [1] { + Parameter #0 [ <optional> $descriptor ] + } + } + + Method [ <internal:phalcon> public method prepare ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlStatement ] + } + } + + Method [ <internal:phalcon> public method executePrepared ] { + + - Parameters [3] { + Parameter #0 [ <required> $statement ] + Parameter #1 [ <required> $placeholders ] + Parameter #2 [ <required> $dataTypes ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\AdapterInterface, prototype Phalcon\Db\AdapterInterface> public method query ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlStatement ] + Parameter #1 [ <optional> $placeholders ] + Parameter #2 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\AdapterInterface, prototype Phalcon\Db\AdapterInterface> public method execute ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlStatement ] + Parameter #1 [ <optional> $placeholders ] + Parameter #2 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\AdapterInterface, prototype Phalcon\Db\AdapterInterface> public method affectedRows ] { + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\AdapterInterface, prototype Phalcon\Db\AdapterInterface> public method close ] { + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\AdapterInterface, prototype Phalcon\Db\AdapterInterface> public method escapeIdentifier ] { + + - Parameters [1] { + Parameter #0 [ <required> $identifier ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\AdapterInterface, prototype Phalcon\Db\AdapterInterface> public method escapeString ] { + + - Parameters [1] { + Parameter #0 [ <required> $str ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\AdapterInterface, prototype Phalcon\Db\AdapterInterface> public method convertBoundParams ] { + + - Parameters [2] { + Parameter #0 [ <required> $sqlStatement ] + Parameter #1 [ <required> $params ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\AdapterInterface, prototype Phalcon\Db\AdapterInterface> public method lastInsertId ] { + + - Parameters [1] { + Parameter #0 [ <optional> $sequenceName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\AdapterInterface, prototype Phalcon\Db\AdapterInterface> public method begin ] { + + - Parameters [1] { + Parameter #0 [ <optional> $nesting ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\AdapterInterface, prototype Phalcon\Db\AdapterInterface> public method rollback ] { + + - Parameters [1] { + Parameter #0 [ <optional> $nesting ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\AdapterInterface, prototype Phalcon\Db\AdapterInterface> public method commit ] { + + - Parameters [1] { + Parameter #0 [ <optional> $nesting ] + } + } + + Method [ <internal:phalcon> public method getTransactionLevel ] { + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\AdapterInterface, prototype Phalcon\Db\AdapterInterface> public method isUnderTransaction ] { + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\AdapterInterface, prototype Phalcon\Db\AdapterInterface> public method getInternalHandler ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter> public method setDialect ] { + + - Parameters [1] { + Parameter #0 [ <required> $dialect ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getDialect ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method fetchOne ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <optional> $fetchMode ] + Parameter #2 [ <optional> $placeholders ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method fetchAll ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <optional> $fetchMode ] + Parameter #2 [ <optional> $placeholders ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method insert ] { + + - Parameters [4] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <required> $values ] + Parameter #2 [ <optional> $fields ] + Parameter #3 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method update ] { + + - Parameters [5] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <required> $fields ] + Parameter #2 [ <required> $values ] + Parameter #3 [ <optional> $whereCondition ] + Parameter #4 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method delete ] { + + - Parameters [4] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $whereCondition ] + Parameter #2 [ <optional> $placeholders ] + Parameter #3 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getColumnList ] { + + - Parameters [1] { + Parameter #0 [ <required> $columnList ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method limit ] { + + - Parameters [2] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <required> $number ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method tableExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method viewExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method forUpdate ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method sharedLock ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method createTable ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $definition ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropTable ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + Parameter #2 [ <optional> $ifExists ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method createView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <optional> $schemaName ] + Parameter #2 [ <optional> $ifExists ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method addColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method modifyColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $columnName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method addIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $indexName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method addPrimaryKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropPrimaryKey ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method addForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $reference ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $referenceName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getColumnDefinition ] { + + - Parameters [1] { + Parameter #0 [ <required> $column ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method listTables ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method listViews ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method describeIndexes ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method describeReferences ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method tableOptions ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method createSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method releaseSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method rollbackSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method setNestedTransactionsWithSavepoints ] { + + - Parameters [1] { + Parameter #0 [ <required> $nestedTransactionsWithSavepoints ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method isNestedTransactionsWithSavepoints ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getNestedTransactionSavepointName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getDefaultIdValue ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method supportSequences ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method useExplicitIdValue ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getDescriptor ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getConnectionId ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getSQLStatement ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getRealSQLStatement ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getSQLVariables ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getSQLBindTypes ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getType ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getDialectType ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\AdapterInterface> abstract public method describeColumns ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Db\Dialect implements Phalcon\Db\DialectInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_escapeChar ] + } + + - Methods [34] { + Method [ <internal:phalcon, prototype Phalcon\Db\DialectInterface> public method limit ] { + + - Parameters [2] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <required> $number ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\DialectInterface> public method forUpdate ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\DialectInterface> public method sharedLock ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\DialectInterface> public method getColumnList ] { + + - Parameters [1] { + Parameter #0 [ <required> $columnList ] + } + } + + Method [ <internal:phalcon> public method getSqlExpression ] { + + - Parameters [2] { + Parameter #0 [ <required> $expression ] + Parameter #1 [ <optional> $escapeChar ] + } + } + + Method [ <internal:phalcon> public method getSqlTable ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $escapeChar ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\DialectInterface> public method select ] { + + - Parameters [1] { + Parameter #0 [ <required> $definition ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\DialectInterface> public method supportsSavepoints ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\DialectInterface> public method supportsReleaseSavepoints ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\DialectInterface> public method createSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\DialectInterface> public method releaseSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\DialectInterface> public method rollbackSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\DialectInterface> abstract public method getColumnDefinition ] { + + - Parameters [1] { + Parameter #0 [ <required> $column ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\DialectInterface> abstract public method addColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\DialectInterface> abstract public method modifyColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\DialectInterface> abstract public method dropColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $columnName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\DialectInterface> abstract public method addIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\DialectInterface> abstract public method dropIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $indexName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\DialectInterface> abstract public method addPrimaryKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\DialectInterface> abstract public method dropPrimaryKey ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\DialectInterface> abstract public method addForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $reference ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\DialectInterface> abstract public method dropForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $referenceName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\DialectInterface> abstract public method createTable ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $definition ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\DialectInterface> abstract public method dropTable ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\DialectInterface> abstract public method createView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\DialectInterface> abstract public method dropView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <optional> $ifExists ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\DialectInterface> abstract public method tableExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\DialectInterface> abstract public method viewExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\DialectInterface> abstract public method describeColumns ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\DialectInterface> abstract public method listTables ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\DialectInterface> abstract public method listViews ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\DialectInterface> abstract public method describeIndexes ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\DialectInterface> abstract public method describeReferences ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\DialectInterface> abstract public method tableOptions ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Annotations\Adapter implements Phalcon\Annotations\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_reader ] + Property [ <default> protected $_annotations ] + } + + - Methods [9] { + Method [ <internal:phalcon, prototype Phalcon\Annotations\AdapterInterface> public method setReader ] { + + - Parameters [1] { + Parameter #0 [ <required> $reader ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Annotations\AdapterInterface> public method getReader ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Annotations\AdapterInterface> public method get ] { + + - Parameters [1] { + Parameter #0 [ <required> $className ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Annotations\AdapterInterface> public method getMethods ] { + + - Parameters [1] { + Parameter #0 [ <required> $className ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Annotations\AdapterInterface> public method getMethod ] { + + - Parameters [2] { + Parameter #0 [ <required> $className ] + Parameter #1 [ <required> $methodName ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Annotations\AdapterInterface> public method getProperties ] { + + - Parameters [1] { + Parameter #0 [ <required> $className ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Annotations\AdapterInterface> public method getProperty ] { + + - Parameters [2] { + Parameter #0 [ <required> $className ] + Parameter #1 [ <required> $propertyName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\AdapterInterface> abstract public method read ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\AdapterInterface> abstract public method write ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $data ] + } + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Logger\Adapter implements Phalcon\Logger\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $_transaction ] + Property [ <default> protected $_queue ] + Property [ <default> protected $_formatter ] + Property [ <default> protected $_logLevel ] + } + + - Methods [20] { + Method [ <internal:phalcon, prototype Phalcon\Logger\AdapterInterface> public method setLogLevel ] { + + - Parameters [1] { + Parameter #0 [ <required> $level ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Logger\AdapterInterface> public method getLogLevel ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Logger\AdapterInterface> public method setFormatter ] { + + - Parameters [1] { + Parameter #0 [ <required> $formatter ] + } + } + + Method [ <internal:phalcon> public method isTransaction ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Logger\AdapterInterface> public method begin ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Logger\AdapterInterface> public method commit ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Logger\AdapterInterface> public method rollback ] { + } + + Method [ <internal, deprecated:phalcon> public method emergence ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Logger\AdapterInterface> public method log ] { + + - Parameters [3] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $message ] + Parameter #2 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Logger\AdapterInterface> public method debug ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Logger\AdapterInterface> public method info ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Logger\AdapterInterface> public method notice ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Logger\AdapterInterface> public method warning ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Logger\AdapterInterface> public method error ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Logger\AdapterInterface> public method critical ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Logger\AdapterInterface> public method alert ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Logger\AdapterInterface> public method emergency ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon> abstract protected method logInternal ] { + + - Parameters [4] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <required> $type ] + Parameter #2 [ <required> $time ] + Parameter #3 [ <required> $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\AdapterInterface> abstract public method getFormatter ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\AdapterInterface> abstract public method close ] { + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Logger\Formatter implements Phalcon\Logger\FormatterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [3] { + Method [ <internal:phalcon> public method getTypeString ] { + + - Parameters [1] { + Parameter #0 [ <required> $type ] + } + } + + Method [ <internal:phalcon> protected method interpolate ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <required> $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\FormatterInterface> abstract public method format ] { + + - Parameters [4] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <required> $type ] + Parameter #2 [ <required> $timestamp ] + Parameter #3 [ <required> $context ] + } + } + } + } + + Class [ <internal:phalcon> <iterateable> abstract class Phalcon\Mvc\Model\Resultset implements Phalcon\Mvc\Model\ResultsetInterface, Iterator, Traversable, SeekableIterator, Countable, ArrayAccess, Serializable ] { + + - Constants [5] { + Constant [ integer TYPE_RESULT_FULL ] { 0 } + Constant [ integer TYPE_RESULT_PARTIAL ] { 1 } + Constant [ integer HYDRATE_RECORDS ] { 0 } + Constant [ integer HYDRATE_OBJECTS ] { 2 } + Constant [ integer HYDRATE_ARRAYS ] { 1 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [10] { + Property [ <default> protected $_type ] + Property [ <default> protected $_result ] + Property [ <default> protected $_cache ] + Property [ <default> protected $_isFresh ] + Property [ <default> protected $_pointer ] + Property [ <default> protected $_count ] + Property [ <default> protected $_activeRow ] + Property [ <default> protected $_rows ] + Property [ <default> protected $_errorMessages ] + Property [ <default> protected $_hydrateMode ] + } + + - Methods [25] { + Method [ <internal:phalcon, prototype Iterator> public method next ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Iterator> public method key ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Iterator> public method rewind ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype SeekableIterator> public method seek ] { + + - Parameters [1] { + Parameter #0 [ <required> $position ] + } + } + + Method [ <internal:phalcon, prototype Countable> public method count ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ResultsetInterface> public method getType ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ResultsetInterface> public method getFirst ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ResultsetInterface> public method getLast ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ResultsetInterface> public method setIsFresh ] { + + - Parameters [1] { + Parameter #0 [ <required> $isFresh ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ResultsetInterface> public method isFresh ] { + } + + Method [ <internal:phalcon> public method setHydrateMode ] { + + - Parameters [1] { + Parameter #0 [ <required> $hydrateMode ] + } + } + + Method [ <internal:phalcon> public method getHydrateMode ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ResultsetInterface> public method getCache ] { + } + + Method [ <internal:phalcon, prototype Iterator> public method current ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method getMessages ] { + } + + Method [ <internal:phalcon> public method delete ] { + + - Parameters [1] { + Parameter #0 [ <optional> $conditionCallback ] + } + } + + Method [ <internal:phalcon> public method filter ] { + + - Parameters [1] { + Parameter #0 [ <required> $filter ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\ResultsetInterface> abstract public method toArray ] { + } + + Method [ <internal:Core, inherits Iterator, prototype Iterator> abstract public method valid ] { + } + + Method [ <internal:Core, inherits Serializable> abstract public method serialize ] { + } + + Method [ <internal:Core, inherits Serializable, ctor> abstract public method unserialize ] { + + - Parameters [1] { + Parameter #0 [ <required> $serialized ] + } + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Mvc\Model\Behavior implements Phalcon\Mvc\Model\BehaviorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_options ] + } + + - Methods [5] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon> protected method mustTakeAction ] { + } + + Method [ <internal:phalcon> protected method getOptions ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\BehaviorInterface> public method notify ] { + + - Parameters [2] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\BehaviorInterface> public method missingMethod ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $method ] + Parameter #2 [ <optional> $arguments ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Assets\Resource ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [8] { + Property [ <default> protected $_type ] + Property [ <default> protected $_path ] + Property [ <default> protected $_local ] + Property [ <default> protected $_filter ] + Property [ <default> protected $_attributes ] + Property [ <default> protected $_sourcePath ] + Property [ <default> protected $_targetPath ] + Property [ <default> protected $_targetUri ] + } + + - Methods [21] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [5] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $path ] + Parameter #2 [ <optional> $local ] + Parameter #3 [ <optional> $filter ] + Parameter #4 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon> public method setType ] { + + - Parameters [1] { + Parameter #0 [ <required> $type ] + } + } + + Method [ <internal:phalcon> public method getType ] { + } + + Method [ <internal:phalcon> public method setPath ] { + + - Parameters [1] { + Parameter #0 [ <required> $path ] + } + } + + Method [ <internal:phalcon> public method getPath ] { + } + + Method [ <internal:phalcon> public method setLocal ] { + + - Parameters [1] { + Parameter #0 [ <required> $local ] + } + } + + Method [ <internal:phalcon> public method getLocal ] { + } + + Method [ <internal:phalcon> public method setFilter ] { + + - Parameters [1] { + Parameter #0 [ <required> $filter ] + } + } + + Method [ <internal:phalcon> public method getFilter ] { + } + + Method [ <internal:phalcon> public method setAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon> public method getAttributes ] { + } + + Method [ <internal:phalcon> public method setTargetUri ] { + + - Parameters [1] { + Parameter #0 [ <required> $targetUri ] + } + } + + Method [ <internal:phalcon> public method getTargetUri ] { + } + + Method [ <internal:phalcon> public method setSourcePath ] { + + - Parameters [1] { + Parameter #0 [ <required> $sourcePath ] + } + } + + Method [ <internal:phalcon> public method getSourcePath ] { + } + + Method [ <internal:phalcon> public method setTargetPath ] { + + - Parameters [1] { + Parameter #0 [ <required> $targetPath ] + } + } + + Method [ <internal:phalcon> public method getTargetPath ] { + } + + Method [ <internal:phalcon> public method getContent ] { + + - Parameters [1] { + Parameter #0 [ <optional> $basePath ] + } + } + + Method [ <internal:phalcon> public method getRealTargetUri ] { + } + + Method [ <internal:phalcon> public method getRealSourcePath ] { + + - Parameters [1] { + Parameter #0 [ <optional> $basePath ] + } + } + + Method [ <internal:phalcon> public method getRealTargetPath ] { + + - Parameters [1] { + Parameter #0 [ <optional> $basePath ] + } + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Flash ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [3] { + Property [ <default> protected $_cssClasses ] + Property [ <default> protected $_implicitFlush ] + Property [ <default> protected $_automaticHtml ] + } + + - Methods [9] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $cssClasses ] + } + } + + Method [ <internal:phalcon> public method setImplicitFlush ] { + + - Parameters [1] { + Parameter #0 [ <required> $implicitFlush ] + } + } + + Method [ <internal:phalcon> public method setAutomaticHtml ] { + + - Parameters [1] { + Parameter #0 [ <required> $automaticHtml ] + } + } + + Method [ <internal:phalcon> public method setCssClasses ] { + + - Parameters [1] { + Parameter #0 [ <required> $cssClasses ] + } + } + + Method [ <internal:phalcon> public method error ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon> public method notice ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon> public method success ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon> public method warning ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon> public method outputMessage ] { + + - Parameters [2] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $message ] + } + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Dispatcher implements Phalcon\DispatcherInterface, Phalcon\DI\InjectionAwareInterface, Phalcon\Events\EventsAwareInterface ] { + + - Constants [6] { + Constant [ integer EXCEPTION_NO_DI ] { 0 } + Constant [ integer EXCEPTION_CYCLIC_ROUTING ] { 1 } + Constant [ integer EXCEPTION_HANDLER_NOT_FOUND ] { 2 } + Constant [ integer EXCEPTION_INVALID_HANDLER ] { 3 } + Constant [ integer EXCEPTION_INVALID_PARAMS ] { 4 } + Constant [ integer EXCEPTION_ACTION_NOT_FOUND ] { 5 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [20] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_activeHandler ] + Property [ <default> protected $_finished ] + Property [ <default> protected $_forwarded ] + Property [ <default> protected $_moduleName ] + Property [ <default> protected $_namespaceName ] + Property [ <default> protected $_handlerName ] + Property [ <default> protected $_actionName ] + Property [ <default> protected $_params ] + Property [ <default> protected $_returnedValue ] + Property [ <default> protected $_lastHandler ] + Property [ <default> protected $_defaultNamespace ] + Property [ <default> protected $_defaultHandler ] + Property [ <default> protected $_defaultAction ] + Property [ <default> protected $_handlerSuffix ] + Property [ <default> protected $_actionSuffix ] + Property [ <default> protected $_isExactHandler ] + Property [ <default> protected $_previousHandlerName ] + Property [ <default> protected $_previousActionName ] + } + + - Methods [27] { + Method [ <internal:phalcon, ctor> public method __construct ] { + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\DispatcherInterface> public method setActionSuffix ] { + + - Parameters [1] { + Parameter #0 [ <required> $actionSuffix ] + } + } + + Method [ <internal:phalcon> public method setModuleName ] { + + - Parameters [1] { + Parameter #0 [ <required> $moduleName ] + } + } + + Method [ <internal:phalcon> public method getModuleName ] { + } + + Method [ <internal:phalcon> public method setNamespaceName ] { + + - Parameters [1] { + Parameter #0 [ <required> $namespaceName ] + } + } + + Method [ <internal:phalcon> public method getNamespaceName ] { + } + + Method [ <internal:phalcon, prototype Phalcon\DispatcherInterface> public method setDefaultNamespace ] { + + - Parameters [1] { + Parameter #0 [ <required> $namespace ] + } + } + + Method [ <internal:phalcon> public method getDefaultNamespace ] { + } + + Method [ <internal:phalcon, prototype Phalcon\DispatcherInterface> public method setDefaultAction ] { + + - Parameters [1] { + Parameter #0 [ <required> $actionName ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DispatcherInterface> public method setActionName ] { + + - Parameters [1] { + Parameter #0 [ <required> $actionName ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DispatcherInterface> public method getActionName ] { + } + + Method [ <internal:phalcon, prototype Phalcon\DispatcherInterface> public method setParams ] { + + - Parameters [1] { + Parameter #0 [ <required> $params ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DispatcherInterface> public method getParams ] { + } + + Method [ <internal:phalcon, prototype Phalcon\DispatcherInterface> public method setParam ] { + + - Parameters [2] { + Parameter #0 [ <required> $param ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DispatcherInterface> public method getParam ] { + + - Parameters [2] { + Parameter #0 [ <required> $param ] + Parameter #1 [ <optional> $filters ] + } + } + + Method [ <internal:phalcon> public method getActiveMethod ] { + } + + Method [ <internal:phalcon, prototype Phalcon\DispatcherInterface> public method isFinished ] { + } + + Method [ <internal:phalcon> public method setReturnedValue ] { + + - Parameters [1] { + Parameter #0 [ <required> $value ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DispatcherInterface> public method getReturnedValue ] { + } + + Method [ <internal:phalcon, prototype Phalcon\DispatcherInterface> public method dispatch ] { + } + + Method [ <internal:phalcon, prototype Phalcon\DispatcherInterface> public method forward ] { + + - Parameters [1] { + Parameter #0 [ <required> $forward ] + } + } + + Method [ <internal:phalcon> public method wasForwarded ] { + } + + Method [ <internal:phalcon> public method getHandlerClass ] { + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Mvc\View\Engine extends Phalcon\DI\Injectable implements Phalcon\Events\EventsAwareInterface, Phalcon\DI\InjectionAwareInterface, Phalcon\Mvc\View\EngineInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [3] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_view ] + } + + - Methods [10] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $view ] + Parameter #1 [ <optional> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\View\EngineInterface> public method getContent ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\View\EngineInterface> public method partial ] { + + - Parameters [1] { + Parameter #0 [ <required> $partialPath ] + } + } + + Method [ <internal:phalcon> public method getView ] { + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable> public method __get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\View\EngineInterface> abstract public method render ] { + + - Parameters [3] { + Parameter #0 [ <required> $path ] + Parameter #1 [ <required> $params ] + Parameter #2 [ <optional> $mustClean ] + } + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Translate\Adapter implements ArrayAccess, Phalcon\Translate\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [8] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method _ ] { + + - Parameters [2] { + Parameter #0 [ <required> $translateKey ] + Parameter #1 [ <optional> $placeholders ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Translate\AdapterInterface> abstract public method query ] { + + - Parameters [2] { + Parameter #0 [ <required> $index ] + Parameter #1 [ <optional> $placeholders ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Translate\AdapterInterface> abstract public method exists ] { + + - Parameters [1] { + Parameter #0 [ <required> $index ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Cache\Frontend\Data implements Phalcon\Cache\FrontendInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_frontendOptions ] + } + + - Methods [8] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $frontendOptions ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Cache\FrontendInterface> public method getLifetime ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Cache\FrontendInterface> public method isBuffering ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Cache\FrontendInterface> public method start ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Cache\FrontendInterface> public method getContent ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Cache\FrontendInterface> public method stop ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Cache\FrontendInterface> public method beforeStore ] { + + - Parameters [1] { + Parameter #0 [ <required> $data ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Cache\FrontendInterface> public method afterRetrieve ] { + + - Parameters [1] { + Parameter #0 [ <required> $data ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\DI\FactoryDefault extends Phalcon\DI implements Phalcon\DiInterface ] { + + - Constants [0] { + } + + - Static properties [1] { + Property [ protected static $_default ] + } + + - Static methods [3] { + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> static public method setDefault ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> static public method getDefault ] { + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> static public method reset ] { + } + } + + - Properties [0] { + } + + - Methods [20] { + Method [ <internal:phalcon, overwrites Phalcon\DI, ctor> public method __construct ] { + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> public method set ] { + + - Parameters [3] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <optional> $shared ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> public method remove ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI> public method getRaw ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> public method getService ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> public method setService ] { + + - Parameters [1] { + Parameter #0 [ <required> $rawDefinition ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> public method getShared ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> public method has ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> public method wasFreshInstance ] { + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> public method getServices ] { + } + + Method [ <internal:phalcon, inherits Phalcon\DI> public method attempt ] { + + - Parameters [3] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <optional> $shared ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI> public method setShared ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <required> $definition ] + } + } + + Method [ <internal, deprecated:phalcon, inherits Phalcon\DI> public method setRaw ] { + + - Parameters [1] { + Parameter #0 [ <required> $rawDefinition ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype ArrayAccess> public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI> public method __call ] { + + - Parameters [2] { + Parameter #0 [ <required> $method ] + Parameter #1 [ <optional> $arguments ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI> public method __clone ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Config implements ArrayAccess, Countable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ <internal:phalcon> static public method __set_state ] { + + - Parameters [1] { + Parameter #0 [ <optional> array $properties ] + } + } + } + + - Properties [0] { + } + + - Methods [14] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $arrayConfig ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon> public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $index ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon> public method merge ] { + + - Parameters [1] { + Parameter #0 [ <required> $config ] + } + } + + Method [ <internal:phalcon> public method toArray ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Countable> public method count ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method __wakeup ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method __get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon> public method __set ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> public method __isset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon> public method __unset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Router implements Phalcon\Mvc\RouterInterface, Phalcon\DI\InjectionAwareInterface ] { + + - Constants [2] { + Constant [ integer URI_SOURCE_GET_URL ] { 0 } + Constant [ integer URI_SOURCE_SERVER_REQUEST_URI ] { 1 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [20] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_uriSource ] + Property [ <default> protected $_namespace ] + Property [ <default> protected $_module ] + Property [ <default> protected $_controller ] + Property [ <default> protected $_action ] + Property [ <default> protected $_params ] + Property [ <default> protected $_routes ] + Property [ <default> protected $_routesNameLookup ] + Property [ <default> protected $_matchedRoute ] + Property [ <default> protected $_matches ] + Property [ <default> protected $_wasMatched ] + Property [ <default> protected $_defaultNamespace ] + Property [ <default> protected $_defaultModule ] + Property [ <default> protected $_defaultController ] + Property [ <default> protected $_defaultAction ] + Property [ <default> protected $_defaultParams ] + Property [ <default> protected $_removeExtraSlashes ] + Property [ <default> protected $_notFoundPaths ] + Property [ <default> protected $_isExactControllerName ] + } + + - Methods [40] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $defaultRoutes ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method getRewriteUri ] { + } + + Method [ <internal:phalcon> public method setUriSource ] { + + - Parameters [1] { + Parameter #0 [ <required> $uriSource ] + } + } + + Method [ <internal:phalcon> public method removeExtraSlashes ] { + + - Parameters [1] { + Parameter #0 [ <required> $remove ] + } + } + + Method [ <internal:phalcon> public method setDefaultNamespace ] { + + - Parameters [1] { + Parameter #0 [ <required> $namespaceName ] + } + } + + Method [ <internal:phalcon> public method getDefaultNamespace ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method setDefaultModule ] { + + - Parameters [1] { + Parameter #0 [ <required> $moduleName ] + } + } + + Method [ <internal:phalcon> public method getDefaultModule ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method setDefaultController ] { + + - Parameters [1] { + Parameter #0 [ <required> $controllerName ] + } + } + + Method [ <internal:phalcon> public method getDefaultController ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method setDefaultAction ] { + + - Parameters [1] { + Parameter #0 [ <required> $actionName ] + } + } + + Method [ <internal:phalcon> public method getDefaultAction ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method setDefaults ] { + + - Parameters [1] { + Parameter #0 [ <required> $defaults ] + } + } + + Method [ <internal:phalcon> public method getDefaults ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method handle ] { + + - Parameters [1] { + Parameter #0 [ <optional> $uri ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method add ] { + + - Parameters [3] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + Parameter #2 [ <optional> $httpMethods ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method addGet ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method addPost ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method addPut ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method addPatch ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method addDelete ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method addOptions ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method addHead ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon> public method mount ] { + + - Parameters [1] { + Parameter #0 [ <required> $group ] + } + } + + Method [ <internal:phalcon> public method notFound ] { + + - Parameters [1] { + Parameter #0 [ <required> $paths ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method clear ] { + } + + Method [ <internal:phalcon> public method getNamespaceName ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method getModuleName ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method getControllerName ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method getActionName ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method getParams ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method getMatchedRoute ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method getMatches ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method wasMatched ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method getRoutes ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method getRouteById ] { + + - Parameters [1] { + Parameter #0 [ <required> $id ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method getRouteByName ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\RouterInterface> public method isExactControllerName ] { + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Acl\Adapter implements Phalcon\Events\EventsAwareInterface, Phalcon\Acl\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [6] { + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_defaultAccess ] + Property [ <default> protected $_accessGranted ] + Property [ <default> protected $_activeRole ] + Property [ <default> protected $_activeResource ] + Property [ <default> protected $_activeAccess ] + } + + - Methods [19] { + Method [ <internal:phalcon, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Acl\AdapterInterface> public method setDefaultAction ] { + + - Parameters [1] { + Parameter #0 [ <required> $defaultAccess ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Acl\AdapterInterface> public method getDefaultAction ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Acl\AdapterInterface> public method getActiveRole ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Acl\AdapterInterface> public method getActiveResource ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Acl\AdapterInterface> public method getActiveAccess ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Acl\AdapterInterface> abstract public method addRole ] { + + - Parameters [2] { + Parameter #0 [ <required> $role ] + Parameter #1 [ <optional> $accessInherits ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Acl\AdapterInterface> abstract public method addInherit ] { + + - Parameters [2] { + Parameter #0 [ <required> $roleName ] + Parameter #1 [ <required> $roleToInherit ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Acl\AdapterInterface> abstract public method isRole ] { + + - Parameters [1] { + Parameter #0 [ <required> $roleName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Acl\AdapterInterface> abstract public method isResource ] { + + - Parameters [1] { + Parameter #0 [ <required> $resourceName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Acl\AdapterInterface> abstract public method addResource ] { + + - Parameters [2] { + Parameter #0 [ <required> $resource ] + Parameter #1 [ <optional> $accessList ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Acl\AdapterInterface> abstract public method addResourceAccess ] { + + - Parameters [2] { + Parameter #0 [ <required> $resourceName ] + Parameter #1 [ <required> $accessList ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Acl\AdapterInterface> abstract public method dropResourceAccess ] { + + - Parameters [2] { + Parameter #0 [ <required> $resourceName ] + Parameter #1 [ <required> $accessList ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Acl\AdapterInterface> abstract public method allow ] { + + - Parameters [3] { + Parameter #0 [ <required> $roleName ] + Parameter #1 [ <required> $resourceName ] + Parameter #2 [ <required> $access ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Acl\AdapterInterface> abstract public method deny ] { + + - Parameters [3] { + Parameter #0 [ <required> $roleName ] + Parameter #1 [ <required> $resourceName ] + Parameter #2 [ <required> $access ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Acl\AdapterInterface> abstract public method isAllowed ] { + + - Parameters [3] { + Parameter #0 [ <required> $role ] + Parameter #1 [ <required> $resource ] + Parameter #2 [ <required> $access ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Acl\AdapterInterface> abstract public method getRoles ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Acl\AdapterInterface> abstract public method getResources ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> <iterateable> abstract class Phalcon\Session\Adapter implements Phalcon\Session\AdapterInterface, Countable, IteratorAggregate, Traversable, ArrayAccess ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [3] { + Property [ <default> protected $_uniqueId ] + Property [ <default> protected $_started ] + Property [ <default> protected $_options ] + } + + - Methods [23] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, dtor> public method __destruct ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Session\AdapterInterface> public method start ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Session\AdapterInterface> public method setOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Session\AdapterInterface> public method getOptions ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Session\AdapterInterface> public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $index ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Session\AdapterInterface> public method set ] { + + - Parameters [2] { + Parameter #0 [ <required> $index ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Session\AdapterInterface> public method has ] { + + - Parameters [1] { + Parameter #0 [ <required> $index ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Session\AdapterInterface> public method remove ] { + + - Parameters [1] { + Parameter #0 [ <required> $index ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Session\AdapterInterface> public method getId ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Session\AdapterInterface> public method isStarted ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Session\AdapterInterface> public method destroy ] { + + - Parameters [1] { + Parameter #0 [ <optional> $session_id ] + } + } + + Method [ <internal:phalcon> public method &__get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon> public method __set ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> public method __isset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon> public method __unset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method &offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, prototype Countable> public method count ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype IteratorAggregate> public method getIterator ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method setId ] { + + - Parameters [1] { + Parameter #0 [ <required> $sid ] + } + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Db ] { + + - Constants [18] { + Constant [ integer FETCH_USE_DEFAULT ] { 0 } + Constant [ integer FETCH_LAZY ] { 1 } + Constant [ integer FETCH_ASSOC ] { 2 } + Constant [ integer FETCH_NUM ] { 3 } + Constant [ integer FETCH_BOTH ] { 4 } + Constant [ integer FETCH_OBJ ] { 5 } + Constant [ integer FETCH_BOUND ] { 6 } + Constant [ integer FETCH_COLUMN ] { 7 } + Constant [ integer FETCH_CLASS ] { 8 } + Constant [ integer FETCH_INTO ] { 9 } + Constant [ integer FETCH_FUNC ] { 10 } + Constant [ integer FETCH_NAMED ] { 11 } + Constant [ integer FETCH_KEY_PAIR ] { 12 } + Constant [ integer FETCH_GROUP ] { 65536 } + Constant [ integer FETCH_UNIQUE ] { 196608 } + Constant [ integer FETCH_CLASSTYPE ] { 262144 } + Constant [ integer FETCH_SERIALIZE ] { 524288 } + Constant [ integer FETCH_PROPS_LATE ] { 1048576 } + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ <internal:phalcon> static public method setup ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Acl ] { + + - Constants [2] { + Constant [ integer ALLOW ] { 1 } + Constant [ integer DENY ] { 0 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Class [ <internal:phalcon> class Phalcon\Tag ] { + + - Constants [11] { + Constant [ integer HTML32 ] { 1 } + Constant [ integer HTML401_STRICT ] { 2 } + Constant [ integer HTML401_TRANSITIONAL ] { 3 } + Constant [ integer HTML401_FRAMESET ] { 4 } + Constant [ integer HTML5 ] { 5 } + Constant [ integer XHTML10_STRICT ] { 6 } + Constant [ integer XHTML10_TRANSITIONAL ] { 7 } + Constant [ integer XHTML10_FRAMESET ] { 8 } + Constant [ integer XHTML11 ] { 9 } + Constant [ integer XHTML20 ] { 10 } + Constant [ integer XHTML5 ] { 11 } + } + + - Static properties [9] { + Property [ protected static $_displayValues ] + Property [ protected static $_documentTitle ] + Property [ protected static $_documentTitleSeparator ] + Property [ protected static $_documentType ] + Property [ protected static $_dependencyInjector ] + Property [ protected static $_urlService ] + Property [ protected static $_dispatcherService ] + Property [ protected static $_escaperService ] + Property [ protected static $_autoEscape ] + } + + - Static methods [55] { + Method [ <internal:phalcon> static public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon> static public method getDI ] { + } + + Method [ <internal:phalcon> static public method getUrlService ] { + } + + Method [ <internal:phalcon> static public method getEscaperService ] { + } + + Method [ <internal:phalcon> static public method getAutoescape ] { + } + + Method [ <internal:phalcon> static public method setAutoescape ] { + + - Parameters [1] { + Parameter #0 [ <required> $autoescape ] + } + } + + Method [ <internal:phalcon> static public method setDefault ] { + + - Parameters [2] { + Parameter #0 [ <required> $id ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> static public method setDefaults ] { + + - Parameters [1] { + Parameter #0 [ <required> $values ] + } + } + + Method [ <internal:phalcon> static public method displayTo ] { + + - Parameters [2] { + Parameter #0 [ <required> $id ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> static public method hasValue ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> static public method getValue ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $params ] + } + } + + Method [ <internal:phalcon> static public method resetInput ] { + } + + Method [ <internal:phalcon> static public method linkTo ] { + + - Parameters [2] { + Parameter #0 [ <required> $parameters ] + Parameter #1 [ <optional> $text ] + } + } + + Method [ <internal:phalcon> static protected method _inputField ] { + } + + Method [ <internal:phalcon> static protected method _inputFieldChecked ] { + } + + Method [ <internal:phalcon> static public method colorField ] { + + - Parameters [1] { + Parameter #0 [ <required> $parameters ] + } + } + + Method [ <internal:phalcon> static public method textField ] { + + - Parameters [1] { + Parameter #0 [ <required> $parameters ] + } + } + + Method [ <internal:phalcon> static public method numericField ] { + + - Parameters [1] { + Parameter #0 [ <required> $parameters ] + } + } + + Method [ <internal:phalcon> static public method rangeField ] { + + - Parameters [1] { + Parameter #0 [ <required> $parameters ] + } + } + + Method [ <internal:phalcon> static public method emailField ] { + + - Parameters [1] { + Parameter #0 [ <required> $parameters ] + } + } + + Method [ <internal:phalcon> static public method dateField ] { + + - Parameters [1] { + Parameter #0 [ <required> $parameters ] + } + } + + Method [ <internal:phalcon> static public method dateTimeField ] { + + - Parameters [1] { + Parameter #0 [ <required> $parameters ] + } + } + + Method [ <internal:phalcon> static public method dateTimeLocalField ] { + + - Parameters [1] { + Parameter #0 [ <required> $parameters ] + } + } + + Method [ <internal:phalcon> static public method monthField ] { + + - Parameters [1] { + Parameter #0 [ <required> $parameters ] + } + } + + Method [ <internal:phalcon> static public method timeField ] { + + - Parameters [1] { + Parameter #0 [ <required> $parameters ] + } + } + + Method [ <internal:phalcon> static public method weekField ] { + + - Parameters [1] { + Parameter #0 [ <required> $parameters ] + } + } + + Method [ <internal:phalcon> static public method passwordField ] { + + - Parameters [1] { + Parameter #0 [ <required> $parameters ] + } + } + + Method [ <internal:phalcon> static public method hiddenField ] { + + - Parameters [1] { + Parameter #0 [ <required> $parameters ] + } + } + + Method [ <internal:phalcon> static public method searchField ] { + + - Parameters [1] { + Parameter #0 [ <required> $parameters ] + } + } + + Method [ <internal:phalcon> static public method telField ] { + + - Parameters [1] { + Parameter #0 [ <required> $parameters ] + } + } + + Method [ <internal:phalcon> static public method urlField ] { + + - Parameters [1] { + Parameter #0 [ <required> $parameters ] + } + } + + Method [ <internal:phalcon> static public method fileField ] { + + - Parameters [1] { + Parameter #0 [ <required> $parameters ] + } + } + + Method [ <internal:phalcon> static public method checkField ] { + + - Parameters [1] { + Parameter #0 [ <required> $parameters ] + } + } + + Method [ <internal:phalcon> static public method radioField ] { + + - Parameters [1] { + Parameter #0 [ <required> $parameters ] + } + } + + Method [ <internal:phalcon> static public method imageInput ] { + + - Parameters [1] { + Parameter #0 [ <required> $parameters ] + } + } + + Method [ <internal:phalcon> static public method submitButton ] { + + - Parameters [1] { + Parameter #0 [ <required> $parameters ] + } + } + + Method [ <internal:phalcon> static public method selectStatic ] { + + - Parameters [2] { + Parameter #0 [ <required> $parameters ] + Parameter #1 [ <optional> $data ] + } + } + + Method [ <internal:phalcon> static public method select ] { + + - Parameters [2] { + Parameter #0 [ <required> $parameters ] + Parameter #1 [ <optional> $data ] + } + } + + Method [ <internal:phalcon> static public method textArea ] { + + - Parameters [1] { + Parameter #0 [ <required> $parameters ] + } + } + + Method [ <internal:phalcon> static public method form ] { + + - Parameters [1] { + Parameter #0 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon> static public method endForm ] { + } + + Method [ <internal:phalcon> static public method setTitle ] { + + - Parameters [1] { + Parameter #0 [ <required> $title ] + } + } + + Method [ <internal:phalcon> static public method setTitleSeparator ] { + + - Parameters [1] { + Parameter #0 [ <required> $separator ] + } + } + + Method [ <internal:phalcon> static public method appendTitle ] { + + - Parameters [1] { + Parameter #0 [ <required> $title ] + } + } + + Method [ <internal:phalcon> static public method prependTitle ] { + + - Parameters [1] { + Parameter #0 [ <required> $title ] + } + } + + Method [ <internal:phalcon> static public method getTitle ] { + + - Parameters [1] { + Parameter #0 [ <optional> $tags ] + } + } + + Method [ <internal:phalcon> static public method getTitleSeparator ] { + } + + Method [ <internal:phalcon> static public method stylesheetLink ] { + + - Parameters [2] { + Parameter #0 [ <optional> $parameters ] + Parameter #1 [ <optional> $local ] + } + } + + Method [ <internal:phalcon> static public method javascriptInclude ] { + + - Parameters [2] { + Parameter #0 [ <optional> $parameters ] + Parameter #1 [ <optional> $local ] + } + } + + Method [ <internal:phalcon> static public method image ] { + + - Parameters [2] { + Parameter #0 [ <optional> $parameters ] + Parameter #1 [ <optional> $local ] + } + } + + Method [ <internal:phalcon> static public method friendlyTitle ] { + + - Parameters [3] { + Parameter #0 [ <required> $text ] + Parameter #1 [ <optional> $separator ] + Parameter #2 [ <optional> $lowercase ] + } + } + + Method [ <internal:phalcon> static public method setDocType ] { + + - Parameters [1] { + Parameter #0 [ <required> $doctype ] + } + } + + Method [ <internal:phalcon> static public method getDocType ] { + } + + Method [ <internal:phalcon> static public method tagHtml ] { + + - Parameters [5] { + Parameter #0 [ <required> $tagName ] + Parameter #1 [ <optional> $parameters ] + Parameter #2 [ <optional> $selfClose ] + Parameter #3 [ <optional> $onlyStart ] + Parameter #4 [ <optional> $useEol ] + } + } + + Method [ <internal:phalcon> static public method tagHtmlClose ] { + + - Parameters [2] { + Parameter #0 [ <required> $tagName ] + Parameter #1 [ <optional> $useEol ] + } + } + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Class [ <internal:phalcon> class Phalcon\Cache\Multiple ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_backends ] + } + + - Methods [7] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $backends ] + } + } + + Method [ <internal:phalcon> public method push ] { + + - Parameters [1] { + Parameter #0 [ <required> $backend ] + } + } + + Method [ <internal:phalcon> public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon> public method start ] { + + - Parameters [2] { + Parameter #0 [ <required> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon> public method save ] { + + - Parameters [4] { + Parameter #0 [ <optional> $keyName ] + Parameter #1 [ <optional> $content ] + Parameter #2 [ <optional> $lifetime ] + Parameter #3 [ <optional> $stopBuffer ] + } + } + + Method [ <internal:phalcon> public method delete ] { + + - Parameters [1] { + Parameter #0 [ <required> $keyName ] + } + } + + Method [ <internal:phalcon> public method exists ] { + + - Parameters [2] { + Parameter #0 [ <optional> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Cache\Backend\Apc extends Phalcon\Cache\Backend implements Phalcon\Cache\BackendInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [7] { + Property [ <default> protected $_frontend ] + Property [ <default> protected $_options ] + Property [ <default> protected $_prefix ] + Property [ <default> protected $_lastKey ] + Property [ <default> protected $_lastLifetime ] + Property [ <default> protected $_fresh ] + Property [ <default> protected $_started ] + } + + - Methods [18] { + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method save ] { + + - Parameters [4] { + Parameter #0 [ <optional> $keyName ] + Parameter #1 [ <optional> $content ] + Parameter #2 [ <optional> $lifetime ] + Parameter #3 [ <optional> $stopBuffer ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method delete ] { + + - Parameters [1] { + Parameter #0 [ <required> $keyName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method queryKeys ] { + + - Parameters [1] { + Parameter #0 [ <optional> $prefix ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method exists ] { + + - Parameters [2] { + Parameter #0 [ <optional> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon> public method increment ] { + + - Parameters [2] { + Parameter #0 [ <optional> $key_name ] + Parameter #1 [ <optional> $value ] + } + } + + Method [ <internal:phalcon> public method decrement ] { + + - Parameters [2] { + Parameter #0 [ <optional> $key_name ] + Parameter #1 [ <optional> $value ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method flush ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $frontend ] + Parameter #1 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method start ] { + + - Parameters [2] { + Parameter #0 [ <required> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method stop ] { + + - Parameters [1] { + Parameter #0 [ <optional> $stopBuffer ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method getFrontend ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method getOptions ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method isFresh ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method isStarted ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method setLastKey ] { + + - Parameters [1] { + Parameter #0 [ <required> $lastKey ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method getLastKey ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend> public method getLifetime ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Cache\Backend\File extends Phalcon\Cache\Backend implements Phalcon\Cache\BackendInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [7] { + Property [ <default> protected $_frontend ] + Property [ <default> protected $_options ] + Property [ <default> protected $_prefix ] + Property [ <default> protected $_lastKey ] + Property [ <default> protected $_lastLifetime ] + Property [ <default> protected $_fresh ] + Property [ <default> protected $_started ] + } + + - Methods [18] { + Method [ <internal:phalcon, overwrites Phalcon\Cache\Backend, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $frontend ] + Parameter #1 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method save ] { + + - Parameters [4] { + Parameter #0 [ <optional> $keyName ] + Parameter #1 [ <optional> $content ] + Parameter #2 [ <optional> $lifetime ] + Parameter #3 [ <optional> $stopBuffer ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method delete ] { + + - Parameters [1] { + Parameter #0 [ <required> $keyName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method queryKeys ] { + + - Parameters [1] { + Parameter #0 [ <optional> $prefix ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method exists ] { + + - Parameters [2] { + Parameter #0 [ <optional> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon> public method increment ] { + + - Parameters [2] { + Parameter #0 [ <optional> $key_name ] + Parameter #1 [ <optional> $value ] + } + } + + Method [ <internal:phalcon> public method decrement ] { + + - Parameters [2] { + Parameter #0 [ <optional> $key_name ] + Parameter #1 [ <optional> $value ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method flush ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method start ] { + + - Parameters [2] { + Parameter #0 [ <required> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method stop ] { + + - Parameters [1] { + Parameter #0 [ <optional> $stopBuffer ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method getFrontend ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method getOptions ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method isFresh ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method isStarted ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method setLastKey ] { + + - Parameters [1] { + Parameter #0 [ <required> $lastKey ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method getLastKey ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend> public method getLifetime ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Cache\Backend\Memory extends Phalcon\Cache\Backend implements Phalcon\Cache\BackendInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [8] { + Property [ <default> protected $_frontend ] + Property [ <default> protected $_options ] + Property [ <default> protected $_prefix ] + Property [ <default> protected $_lastKey ] + Property [ <default> protected $_lastLifetime ] + Property [ <default> protected $_fresh ] + Property [ <default> protected $_started ] + Property [ <default> protected $_data ] + } + + - Methods [18] { + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method save ] { + + - Parameters [4] { + Parameter #0 [ <optional> $keyName ] + Parameter #1 [ <optional> $content ] + Parameter #2 [ <optional> $lifetime ] + Parameter #3 [ <optional> $stopBuffer ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method delete ] { + + - Parameters [1] { + Parameter #0 [ <required> $keyName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method queryKeys ] { + + - Parameters [1] { + Parameter #0 [ <optional> $prefix ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method exists ] { + + - Parameters [2] { + Parameter #0 [ <optional> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon> public method increment ] { + + - Parameters [2] { + Parameter #0 [ <optional> $key_name ] + Parameter #1 [ <optional> $value ] + } + } + + Method [ <internal:phalcon> public method decrement ] { + + - Parameters [2] { + Parameter #0 [ <optional> $key_name ] + Parameter #1 [ <optional> $value ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method flush ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $frontend ] + Parameter #1 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method start ] { + + - Parameters [2] { + Parameter #0 [ <required> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method stop ] { + + - Parameters [1] { + Parameter #0 [ <optional> $stopBuffer ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method getFrontend ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method getOptions ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method isFresh ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method isStarted ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method setLastKey ] { + + - Parameters [1] { + Parameter #0 [ <required> $lastKey ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method getLastKey ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend> public method getLifetime ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Cache\Backend\Xcache extends Phalcon\Cache\Backend implements Phalcon\Cache\BackendInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [7] { + Property [ <default> protected $_frontend ] + Property [ <default> protected $_options ] + Property [ <default> protected $_prefix ] + Property [ <default> protected $_lastKey ] + Property [ <default> protected $_lastLifetime ] + Property [ <default> protected $_fresh ] + Property [ <default> protected $_started ] + } + + - Methods [18] { + Method [ <internal:phalcon, overwrites Phalcon\Cache\Backend, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $frontend ] + Parameter #1 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method save ] { + + - Parameters [4] { + Parameter #0 [ <optional> $keyName ] + Parameter #1 [ <optional> $content ] + Parameter #2 [ <optional> $lifetime ] + Parameter #3 [ <optional> $stopBuffer ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method delete ] { + + - Parameters [1] { + Parameter #0 [ <required> $keyName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method queryKeys ] { + + - Parameters [1] { + Parameter #0 [ <optional> $prefix ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method exists ] { + + - Parameters [2] { + Parameter #0 [ <optional> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon> public method increment ] { + + - Parameters [2] { + Parameter #0 [ <optional> $key_name ] + Parameter #1 [ <optional> $value ] + } + } + + Method [ <internal:phalcon> public method decrement ] { + + - Parameters [2] { + Parameter #0 [ <optional> $key_name ] + Parameter #1 [ <optional> $value ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method flush ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method start ] { + + - Parameters [2] { + Parameter #0 [ <required> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method stop ] { + + - Parameters [1] { + Parameter #0 [ <optional> $stopBuffer ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method getFrontend ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method getOptions ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method isFresh ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method isStarted ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method setLastKey ] { + + - Parameters [1] { + Parameter #0 [ <required> $lastKey ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method getLastKey ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend> public method getLifetime ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Cache\Backend\Mongo extends Phalcon\Cache\Backend implements Phalcon\Cache\BackendInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [8] { + Property [ <default> protected $_frontend ] + Property [ <default> protected $_options ] + Property [ <default> protected $_prefix ] + Property [ <default> protected $_lastKey ] + Property [ <default> protected $_lastLifetime ] + Property [ <default> protected $_fresh ] + Property [ <default> protected $_started ] + Property [ <default> protected $_collection ] + } + + - Methods [20] { + Method [ <internal:phalcon, overwrites Phalcon\Cache\Backend, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $frontend ] + Parameter #1 [ <optional> $options ] + } + } + + Method [ <internal:phalcon> protected method _getCollection ] { + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method save ] { + + - Parameters [4] { + Parameter #0 [ <optional> $keyName ] + Parameter #1 [ <optional> $content ] + Parameter #2 [ <optional> $lifetime ] + Parameter #3 [ <optional> $stopBuffer ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method delete ] { + + - Parameters [1] { + Parameter #0 [ <required> $keyName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method queryKeys ] { + + - Parameters [1] { + Parameter #0 [ <optional> $prefix ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method exists ] { + + - Parameters [2] { + Parameter #0 [ <optional> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon> public method gc ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method increment ] { + + - Parameters [2] { + Parameter #0 [ <optional> $key_name ] + Parameter #1 [ <optional> $value ] + } + } + + Method [ <internal:phalcon> public method decrement ] { + + - Parameters [2] { + Parameter #0 [ <optional> $key_name ] + Parameter #1 [ <optional> $value ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method flush ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method start ] { + + - Parameters [2] { + Parameter #0 [ <required> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method stop ] { + + - Parameters [1] { + Parameter #0 [ <optional> $stopBuffer ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method getFrontend ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method getOptions ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method isFresh ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method isStarted ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method setLastKey ] { + + - Parameters [1] { + Parameter #0 [ <required> $lastKey ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method getLastKey ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend> public method getLifetime ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Cache\Backend\Memcache extends Phalcon\Cache\Backend implements Phalcon\Cache\BackendInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [8] { + Property [ <default> protected $_frontend ] + Property [ <default> protected $_options ] + Property [ <default> protected $_prefix ] + Property [ <default> protected $_lastKey ] + Property [ <default> protected $_lastLifetime ] + Property [ <default> protected $_fresh ] + Property [ <default> protected $_started ] + Property [ <default> protected $_memcache ] + } + + - Methods [21] { + Method [ <internal:phalcon, overwrites Phalcon\Cache\Backend, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $frontend ] + Parameter #1 [ <optional> $options ] + } + } + + Method [ <internal:phalcon> protected method _connect ] { + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method save ] { + + - Parameters [4] { + Parameter #0 [ <optional> $keyName ] + Parameter #1 [ <optional> $content ] + Parameter #2 [ <optional> $lifetime ] + Parameter #3 [ <optional> $stopBuffer ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method delete ] { + + - Parameters [1] { + Parameter #0 [ <required> $keyName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method queryKeys ] { + + - Parameters [1] { + Parameter #0 [ <optional> $prefix ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method exists ] { + + - Parameters [2] { + Parameter #0 [ <optional> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon> public method increment ] { + + - Parameters [2] { + Parameter #0 [ <optional> $key_name ] + Parameter #1 [ <optional> $value ] + } + } + + Method [ <internal:phalcon> public method decrement ] { + + - Parameters [2] { + Parameter #0 [ <optional> $key_name ] + Parameter #1 [ <optional> $value ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method flush ] { + } + + Method [ <internal:phalcon> public method getTrackingKey ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method setTrackingKey ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method start ] { + + - Parameters [2] { + Parameter #0 [ <required> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method stop ] { + + - Parameters [1] { + Parameter #0 [ <optional> $stopBuffer ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method getFrontend ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method getOptions ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method isFresh ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method isStarted ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method setLastKey ] { + + - Parameters [1] { + Parameter #0 [ <required> $lastKey ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method getLastKey ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend> public method getLifetime ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Cache\Backend\Libmemcached extends Phalcon\Cache\Backend implements Phalcon\Cache\BackendInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [8] { + Property [ <default> protected $_frontend ] + Property [ <default> protected $_options ] + Property [ <default> protected $_prefix ] + Property [ <default> protected $_lastKey ] + Property [ <default> protected $_lastLifetime ] + Property [ <default> protected $_fresh ] + Property [ <default> protected $_started ] + Property [ <default> protected $_memcache ] + } + + - Methods [21] { + Method [ <internal:phalcon, overwrites Phalcon\Cache\Backend, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $frontend ] + Parameter #1 [ <optional> $options ] + } + } + + Method [ <internal:phalcon> protected method _connect ] { + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method save ] { + + - Parameters [4] { + Parameter #0 [ <optional> $keyName ] + Parameter #1 [ <optional> $content ] + Parameter #2 [ <optional> $lifetime ] + Parameter #3 [ <optional> $stopBuffer ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method delete ] { + + - Parameters [1] { + Parameter #0 [ <required> $keyName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method queryKeys ] { + + - Parameters [1] { + Parameter #0 [ <optional> $prefix ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method exists ] { + + - Parameters [2] { + Parameter #0 [ <optional> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon> public method increment ] { + + - Parameters [2] { + Parameter #0 [ <optional> $key_name ] + Parameter #1 [ <optional> $value ] + } + } + + Method [ <internal:phalcon> public method decrement ] { + + - Parameters [2] { + Parameter #0 [ <optional> $key_name ] + Parameter #1 [ <optional> $value ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\BackendInterface, prototype Phalcon\Cache\BackendInterface> public method flush ] { + } + + Method [ <internal:phalcon> public method getTrackingKey ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method setTrackingKey ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method start ] { + + - Parameters [2] { + Parameter #0 [ <required> $keyName ] + Parameter #1 [ <optional> $lifetime ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method stop ] { + + - Parameters [1] { + Parameter #0 [ <optional> $stopBuffer ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method getFrontend ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method getOptions ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method isFresh ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method isStarted ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method setLastKey ] { + + - Parameters [1] { + Parameter #0 [ <required> $lastKey ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend, prototype Phalcon\Cache\BackendInterface> public method getLastKey ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Backend> public method getLifetime ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Cache\Frontend\Json extends Phalcon\Cache\Frontend\Data implements Phalcon\Cache\FrontendInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_frontendOptions ] + } + + - Methods [8] { + Method [ <internal:phalcon, overwrites Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method beforeStore ] { + + - Parameters [1] { + Parameter #0 [ <required> $data ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method afterRetrieve ] { + + - Parameters [1] { + Parameter #0 [ <required> $data ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Frontend\Data, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $frontendOptions ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method getLifetime ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method isBuffering ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method start ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method getContent ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method stop ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Cache\Frontend\Output implements Phalcon\Cache\FrontendInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_buffering ] + Property [ <default> protected $_frontendOptions ] + } + + - Methods [8] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $frontendOptions ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Cache\FrontendInterface> public method getLifetime ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Cache\FrontendInterface> public method isBuffering ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Cache\FrontendInterface> public method start ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Cache\FrontendInterface> public method getContent ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Cache\FrontendInterface> public method stop ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Cache\FrontendInterface> public method beforeStore ] { + + - Parameters [1] { + Parameter #0 [ <required> $data ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Cache\FrontendInterface> public method afterRetrieve ] { + + - Parameters [1] { + Parameter #0 [ <required> $data ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Cache\Frontend\None extends Phalcon\Cache\Frontend\Data implements Phalcon\Cache\FrontendInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_frontendOptions ] + } + + - Methods [8] { + Method [ <internal:phalcon, overwrites Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method getLifetime ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method beforeStore ] { + + - Parameters [1] { + Parameter #0 [ <required> $data ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method afterRetrieve ] { + + - Parameters [1] { + Parameter #0 [ <required> $data ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Frontend\Data, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $frontendOptions ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method isBuffering ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method start ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method getContent ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method stop ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Cache\Frontend\Base64 extends Phalcon\Cache\Frontend\Data implements Phalcon\Cache\FrontendInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_frontendOptions ] + } + + - Methods [8] { + Method [ <internal:phalcon, overwrites Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method beforeStore ] { + + - Parameters [1] { + Parameter #0 [ <required> $data ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method afterRetrieve ] { + + - Parameters [1] { + Parameter #0 [ <required> $data ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Frontend\Data, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $frontendOptions ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method getLifetime ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method isBuffering ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method start ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method getContent ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method stop ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Cache\Frontend\Igbinary extends Phalcon\Cache\Frontend\Data implements Phalcon\Cache\FrontendInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_frontendOptions ] + } + + - Methods [8] { + Method [ <internal:phalcon, overwrites Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method beforeStore ] { + + - Parameters [1] { + Parameter #0 [ <required> $data ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method afterRetrieve ] { + + - Parameters [1] { + Parameter #0 [ <required> $data ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Frontend\Data, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $frontendOptions ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method getLifetime ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method isBuffering ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method start ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method getContent ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Cache\Frontend\Data, prototype Phalcon\Cache\FrontendInterface> public method stop ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Tag\Select ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [3] { + Method [ <internal:phalcon> static public method selectField ] { + + - Parameters [2] { + Parameter #0 [ <required> $parameters ] + Parameter #1 [ <optional> $data ] + } + } + + Method [ <internal:phalcon> static protected method _optionsFromResultset ] { + } + + Method [ <internal:phalcon> static protected method _optionsFromArray ] { + } + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Class [ <internal:phalcon> class Phalcon\Paginator\Adapter\Model implements Phalcon\Paginator\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [3] { + Property [ <default> protected $_limitRows ] + Property [ <default> protected $_config ] + Property [ <default> protected $_page ] + } + + - Methods [3] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $config ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Paginator\AdapterInterface> public method setCurrentPage ] { + + - Parameters [1] { + Parameter #0 [ <required> $page ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Paginator\AdapterInterface> public method getPaginate ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Paginator\Adapter\NativeArray implements Phalcon\Paginator\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [3] { + Property [ <default> protected $_limitRows ] + Property [ <default> protected $_data ] + Property [ <default> protected $_page ] + } + + - Methods [3] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $config ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Paginator\AdapterInterface> public method setCurrentPage ] { + + - Parameters [1] { + Parameter #0 [ <required> $page ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Paginator\AdapterInterface> public method getPaginate ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Paginator\Adapter\QueryBuilder implements Phalcon\Paginator\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [3] { + Property [ <default> protected $_builder ] + Property [ <default> protected $_limitRows ] + Property [ <default> protected $_page ] + } + + - Methods [8] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $config ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Paginator\AdapterInterface> public method getPaginate ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method setLimit ] { + + - Parameters [1] { + Parameter #0 [ <required> $limit ] + } + } + + Method [ <internal:phalcon> public method getLimit ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Paginator\AdapterInterface> public method setCurrentPage ] { + + - Parameters [1] { + Parameter #0 [ <required> $page ] + } + } + + Method [ <internal:phalcon> public method getCurrentPage ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method setQueryBuilder ] { + + - Parameters [1] { + Parameter #0 [ <required> $queryBuilder ] + } + } + + Method [ <internal:phalcon> public method getQueryBuilder ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Validation extends Phalcon\DI\Injectable implements Phalcon\Events\EventsAwareInterface, Phalcon\DI\InjectionAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [10] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_data ] + Property [ <default> protected $_entity ] + Property [ <default> protected $_validators ] + Property [ <default> protected $_filters ] + Property [ <default> protected $_messages ] + Property [ <default> protected $_values ] + Property [ <default> protected $_defaultMessages ] + Property [ <default> protected $_labels ] + } + + - Methods [20] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $validators ] + } + } + + Method [ <internal:phalcon> public method validate ] { + + - Parameters [2] { + Parameter #0 [ <optional> $data ] + Parameter #1 [ <optional> $entity ] + } + } + + Method [ <internal:phalcon> public method add ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <required> $validator ] + } + } + + Method [ <internal:phalcon> public method setFilters ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <required> $filters ] + } + } + + Method [ <internal:phalcon> public method getFilters ] { + + - Parameters [1] { + Parameter #0 [ <optional> $attribute ] + } + } + + Method [ <internal:phalcon> public method getValidators ] { + } + + Method [ <internal:phalcon> public method getEntity ] { + } + + Method [ <internal:phalcon> public method getMessages ] { + } + + Method [ <internal:phalcon> public method appendMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon> public method bind ] { + + - Parameters [2] { + Parameter #0 [ <required> $entity ] + Parameter #1 [ <required> $data ] + } + } + + Method [ <internal:phalcon> public method getValue ] { + + - Parameters [1] { + Parameter #0 [ <required> $attribute ] + } + } + + Method [ <internal:phalcon> public method setDefaultMessages ] { + + - Parameters [1] { + Parameter #0 [ <optional> $messages ] + } + } + + Method [ <internal:phalcon> public method getDefaultMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $type ] + } + } + + Method [ <internal:phalcon> public method setLabels ] { + + - Parameters [1] { + Parameter #0 [ <required> $labels ] + } + } + + Method [ <internal:phalcon> public method getLabel ] { + + - Parameters [1] { + Parameter #0 [ <required> $field ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable> public method __get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Validation\Message implements Phalcon\Validation\MessageInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ <internal:phalcon> static public method __set_state ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + } + + - Properties [4] { + Property [ <default> protected $_type ] + Property [ <default> protected $_message ] + Property [ <default> protected $_field ] + Property [ <default> protected $_code ] + } + + - Methods [10] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [4] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> $field ] + Parameter #2 [ <optional> $type ] + Parameter #3 [ <optional> $code ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Validation\MessageInterface> public method setType ] { + + - Parameters [1] { + Parameter #0 [ <required> $type ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Validation\MessageInterface> public method getType ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Validation\MessageInterface> public method setCode ] { + + - Parameters [1] { + Parameter #0 [ <required> $code ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Validation\MessageInterface> public method getCode ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Validation\MessageInterface> public method setMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Validation\MessageInterface> public method getMessage ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Validation\MessageInterface> public method setField ] { + + - Parameters [1] { + Parameter #0 [ <required> $field ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Validation\MessageInterface> public method getField ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Validation\MessageInterface> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> <iterateable> class Phalcon\Validation\Message\Group implements Countable, ArrayAccess, Iterator, Traversable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ <internal:phalcon> static public method __set_state ] { + + - Parameters [1] { + Parameter #0 [ <required> $group ] + } + } + } + + - Properties [2] { + Property [ <default> protected $_position ] + Property [ <default> protected $_messages ] + } + + - Methods [14] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $messages ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $index ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $index ] + Parameter #1 [ <required> $message ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $index ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $index ] + } + } + + Method [ <internal:phalcon> public method appendMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon> public method appendMessages ] { + + - Parameters [1] { + Parameter #0 [ <required> $messages ] + } + } + + Method [ <internal:phalcon> public method filter ] { + + - Parameters [1] { + Parameter #0 [ <required> $fieldName ] + } + } + + Method [ <internal:phalcon, prototype Countable> public method count ] { + } + + Method [ <internal:phalcon, prototype Iterator> public method rewind ] { + } + + Method [ <internal:phalcon, prototype Iterator> public method current ] { + } + + Method [ <internal:phalcon, prototype Iterator> public method key ] { + } + + Method [ <internal:phalcon, prototype Iterator> public method next ] { + } + + Method [ <internal:phalcon, prototype Iterator> public method valid ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Validation\Validator\Regex extends Phalcon\Validation\Validator implements Phalcon\Validation\ValidatorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_options ] + } + + - Methods [5] { + Method [ <internal:phalcon, overwrites Phalcon\Validation\ValidatorInterface, prototype Phalcon\Validation\ValidatorInterface> public method validate ] { + + - Parameters [2] { + Parameter #0 [ <required> $validator ] + Parameter #1 [ <required> $attribute ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method isSetOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method getOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method setOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $value ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Validation\Validator\Email extends Phalcon\Validation\Validator implements Phalcon\Validation\ValidatorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_options ] + } + + - Methods [5] { + Method [ <internal:phalcon, overwrites Phalcon\Validation\ValidatorInterface, prototype Phalcon\Validation\ValidatorInterface> public method validate ] { + + - Parameters [2] { + Parameter #0 [ <required> $validator ] + Parameter #1 [ <required> $attribute ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method isSetOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method getOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method setOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $value ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Validation\Validator\Between extends Phalcon\Validation\Validator implements Phalcon\Validation\ValidatorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_options ] + } + + - Methods [5] { + Method [ <internal:phalcon, overwrites Phalcon\Validation\ValidatorInterface, prototype Phalcon\Validation\ValidatorInterface> public method validate ] { + + - Parameters [2] { + Parameter #0 [ <required> $validator ] + Parameter #1 [ <required> $attribute ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method isSetOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method getOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method setOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $value ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Validation\Validator\Identical extends Phalcon\Validation\Validator implements Phalcon\Validation\ValidatorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_options ] + } + + - Methods [5] { + Method [ <internal:phalcon, overwrites Phalcon\Validation\ValidatorInterface, prototype Phalcon\Validation\ValidatorInterface> public method validate ] { + + - Parameters [2] { + Parameter #0 [ <required> $validator ] + Parameter #1 [ <required> $attribute ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method isSetOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method getOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method setOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $value ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Validation\Validator\PresenceOf extends Phalcon\Validation\Validator implements Phalcon\Validation\ValidatorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_options ] + } + + - Methods [5] { + Method [ <internal:phalcon, overwrites Phalcon\Validation\ValidatorInterface, prototype Phalcon\Validation\ValidatorInterface> public method validate ] { + + - Parameters [2] { + Parameter #0 [ <required> $validator ] + Parameter #1 [ <required> $attribute ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method isSetOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method getOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method setOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $value ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Validation\Validator\InclusionIn extends Phalcon\Validation\Validator implements Phalcon\Validation\ValidatorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_options ] + } + + - Methods [5] { + Method [ <internal:phalcon, overwrites Phalcon\Validation\ValidatorInterface, prototype Phalcon\Validation\ValidatorInterface> public method validate ] { + + - Parameters [2] { + Parameter #0 [ <required> $validator ] + Parameter #1 [ <required> $attribute ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method isSetOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method getOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method setOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $value ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Validation\Validator\StringLength extends Phalcon\Validation\Validator implements Phalcon\Validation\ValidatorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_options ] + } + + - Methods [5] { + Method [ <internal:phalcon, overwrites Phalcon\Validation\ValidatorInterface, prototype Phalcon\Validation\ValidatorInterface> public method validate ] { + + - Parameters [2] { + Parameter #0 [ <required> $validator ] + Parameter #1 [ <required> $attribute ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method isSetOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method getOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method setOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $value ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Validation\Validator\ExclusionIn extends Phalcon\Validation\Validator implements Phalcon\Validation\ValidatorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_options ] + } + + - Methods [5] { + Method [ <internal:phalcon, overwrites Phalcon\Validation\ValidatorInterface, prototype Phalcon\Validation\ValidatorInterface> public method validate ] { + + - Parameters [2] { + Parameter #0 [ <required> $validator ] + Parameter #1 [ <required> $attribute ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method isSetOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method getOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method setOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $value ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Validation\Validator\Confirmation extends Phalcon\Validation\Validator implements Phalcon\Validation\ValidatorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_options ] + } + + - Methods [5] { + Method [ <internal:phalcon, overwrites Phalcon\Validation\ValidatorInterface, prototype Phalcon\Validation\ValidatorInterface> public method validate ] { + + - Parameters [2] { + Parameter #0 [ <required> $validator ] + Parameter #1 [ <required> $attribute ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method isSetOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method getOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method setOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $value ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Validation\Validator\Url extends Phalcon\Validation\Validator implements Phalcon\Validation\ValidatorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_options ] + } + + - Methods [5] { + Method [ <internal:phalcon, overwrites Phalcon\Validation\ValidatorInterface, prototype Phalcon\Validation\ValidatorInterface> public method validate ] { + + - Parameters [2] { + Parameter #0 [ <required> $validator ] + Parameter #1 [ <required> $attribute ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method isSetOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method getOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Validation\Validator, prototype Phalcon\Validation\ValidatorInterface> public method setOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $value ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Db\Index implements Phalcon\Db\IndexInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ <internal:phalcon> static public method __set_state ] { + + - Parameters [1] { + Parameter #0 [ <optional> array $properties ] + } + } + } + + - Properties [3] { + Property [ <default> protected $_indexName ] + Property [ <default> protected $_columns ] + Property [ <default> protected $_type ] + } + + - Methods [4] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [3] { + Parameter #0 [ <required> $indexName ] + Parameter #1 [ <required> $columns ] + Parameter #2 [ <optional> $type ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\IndexInterface> public method getName ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\IndexInterface> public method getColumns ] { + } + + Method [ <internal:phalcon> public method getType ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Db\Column implements Phalcon\Db\ColumnInterface ] { + + - Constants [16] { + Constant [ integer TYPE_INTEGER ] { 0 } + Constant [ integer TYPE_DATE ] { 1 } + Constant [ integer TYPE_VARCHAR ] { 2 } + Constant [ integer TYPE_DECIMAL ] { 3 } + Constant [ integer TYPE_DATETIME ] { 4 } + Constant [ integer TYPE_CHAR ] { 5 } + Constant [ integer TYPE_TEXT ] { 6 } + Constant [ integer TYPE_FLOAT ] { 7 } + Constant [ integer TYPE_BOOLEAN ] { 8 } + Constant [ integer TYPE_DOUBLE ] { 9 } + Constant [ integer BIND_PARAM_NULL ] { 0 } + Constant [ integer BIND_PARAM_INT ] { 1 } + Constant [ integer BIND_PARAM_STR ] { 2 } + Constant [ integer BIND_PARAM_BOOL ] { 5 } + Constant [ integer BIND_PARAM_DECIMAL ] { 32 } + Constant [ integer BIND_SKIP ] { 1024 } + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ <internal:phalcon> static public method __set_state ] { + + - Parameters [1] { + Parameter #0 [ <optional> array $properties ] + } + } + } + + - Properties [13] { + Property [ <default> protected $_columnName ] + Property [ <default> protected $_schemaName ] + Property [ <default> protected $_type ] + Property [ <default> protected $_isNumeric ] + Property [ <default> protected $_size ] + Property [ <default> protected $_scale ] + Property [ <default> protected $_unsigned ] + Property [ <default> protected $_notNull ] + Property [ <default> protected $_primary ] + Property [ <default> protected $_autoIncrement ] + Property [ <default> protected $_first ] + Property [ <default> protected $_after ] + Property [ <default> protected $_bindType ] + } + + - Methods [14] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $columnName ] + Parameter #1 [ <required> $definition ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\ColumnInterface> public method getSchemaName ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\ColumnInterface> public method getName ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\ColumnInterface> public method getType ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\ColumnInterface> public method getSize ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\ColumnInterface> public method getScale ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\ColumnInterface> public method isUnsigned ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\ColumnInterface> public method isNotNull ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\ColumnInterface> public method isPrimary ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\ColumnInterface> public method isAutoIncrement ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\ColumnInterface> public method isNumeric ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\ColumnInterface> public method isFirst ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\ColumnInterface> public method getAfterPosition ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\ColumnInterface> public method getBindType ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Db\Adapter\Pdo\Sqlite extends Phalcon\Db\Adapter\Pdo implements Phalcon\Events\EventsAwareInterface, Phalcon\Db\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [1] { + Property [ protected static $_connectionConsecutive ] + } + + - Static methods [0] { + } + + - Properties [13] { + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_descriptor ] + Property [ <default> protected $_dialect ] + Property [ <default> protected $_connectionId ] + Property [ <default> protected $_sqlStatement ] + Property [ <default> protected $_sqlVariables ] + Property [ <default> protected $_sqlBindTypes ] + Property [ <default> protected $_transactionsWithSavepoints ] + Property [ <default> protected $_pdo ] + Property [ <default> protected $_affectedRows ] + Property [ <default> protected $_transactionLevel ] + Property [ <default> protected $_type ] + Property [ <default> protected $_dialectType ] + } + + - Methods [70] { + Method [ <internal:phalcon, overwrites Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method connect ] { + + - Parameters [1] { + Parameter #0 [ <optional> $descriptor ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\AdapterInterface, prototype Phalcon\Db\AdapterInterface> public method describeColumns ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method describeIndexes ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method describeReferences ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method useExplicitIdValue ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $descriptor ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo> public method prepare ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlStatement ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo> public method executePrepared ] { + + - Parameters [3] { + Parameter #0 [ <required> $statement ] + Parameter #1 [ <required> $placeholders ] + Parameter #2 [ <required> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method query ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlStatement ] + Parameter #1 [ <optional> $placeholders ] + Parameter #2 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method execute ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlStatement ] + Parameter #1 [ <optional> $placeholders ] + Parameter #2 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method affectedRows ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method close ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method escapeIdentifier ] { + + - Parameters [1] { + Parameter #0 [ <required> $identifier ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method escapeString ] { + + - Parameters [1] { + Parameter #0 [ <required> $str ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method convertBoundParams ] { + + - Parameters [2] { + Parameter #0 [ <required> $sqlStatement ] + Parameter #1 [ <required> $params ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method lastInsertId ] { + + - Parameters [1] { + Parameter #0 [ <optional> $sequenceName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method begin ] { + + - Parameters [1] { + Parameter #0 [ <optional> $nesting ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method rollback ] { + + - Parameters [1] { + Parameter #0 [ <optional> $nesting ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method commit ] { + + - Parameters [1] { + Parameter #0 [ <optional> $nesting ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo> public method getTransactionLevel ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method isUnderTransaction ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method getInternalHandler ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter> public method setDialect ] { + + - Parameters [1] { + Parameter #0 [ <required> $dialect ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getDialect ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method fetchOne ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <optional> $fetchMode ] + Parameter #2 [ <optional> $placeholders ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method fetchAll ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <optional> $fetchMode ] + Parameter #2 [ <optional> $placeholders ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method insert ] { + + - Parameters [4] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <required> $values ] + Parameter #2 [ <optional> $fields ] + Parameter #3 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method update ] { + + - Parameters [5] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <required> $fields ] + Parameter #2 [ <required> $values ] + Parameter #3 [ <optional> $whereCondition ] + Parameter #4 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method delete ] { + + - Parameters [4] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $whereCondition ] + Parameter #2 [ <optional> $placeholders ] + Parameter #3 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getColumnList ] { + + - Parameters [1] { + Parameter #0 [ <required> $columnList ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method limit ] { + + - Parameters [2] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <required> $number ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method tableExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method viewExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method forUpdate ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method sharedLock ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method createTable ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $definition ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropTable ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + Parameter #2 [ <optional> $ifExists ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method createView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <optional> $schemaName ] + Parameter #2 [ <optional> $ifExists ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method addColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method modifyColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $columnName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method addIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $indexName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method addPrimaryKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropPrimaryKey ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method addForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $reference ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $referenceName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getColumnDefinition ] { + + - Parameters [1] { + Parameter #0 [ <required> $column ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method listTables ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method listViews ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method tableOptions ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method createSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method releaseSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method rollbackSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method setNestedTransactionsWithSavepoints ] { + + - Parameters [1] { + Parameter #0 [ <required> $nestedTransactionsWithSavepoints ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method isNestedTransactionsWithSavepoints ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getNestedTransactionSavepointName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getDefaultIdValue ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method supportSequences ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getDescriptor ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getConnectionId ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getSQLStatement ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getRealSQLStatement ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getSQLVariables ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getSQLBindTypes ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getType ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getDialectType ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Db\Adapter\Pdo\Mysql extends Phalcon\Db\Adapter\Pdo implements Phalcon\Events\EventsAwareInterface, Phalcon\Db\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [1] { + Property [ protected static $_connectionConsecutive ] + } + + - Static methods [0] { + } + + - Properties [13] { + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_descriptor ] + Property [ <default> protected $_dialect ] + Property [ <default> protected $_connectionId ] + Property [ <default> protected $_sqlStatement ] + Property [ <default> protected $_sqlVariables ] + Property [ <default> protected $_sqlBindTypes ] + Property [ <default> protected $_transactionsWithSavepoints ] + Property [ <default> protected $_pdo ] + Property [ <default> protected $_affectedRows ] + Property [ <default> protected $_transactionLevel ] + Property [ <default> protected $_type ] + Property [ <default> protected $_dialectType ] + } + + - Methods [70] { + Method [ <internal:phalcon, overwrites Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method escapeIdentifier ] { + + - Parameters [1] { + Parameter #0 [ <required> $identifier ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\AdapterInterface, prototype Phalcon\Db\AdapterInterface> public method describeColumns ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $descriptor ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method connect ] { + + - Parameters [1] { + Parameter #0 [ <optional> $descriptor ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo> public method prepare ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlStatement ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo> public method executePrepared ] { + + - Parameters [3] { + Parameter #0 [ <required> $statement ] + Parameter #1 [ <required> $placeholders ] + Parameter #2 [ <required> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method query ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlStatement ] + Parameter #1 [ <optional> $placeholders ] + Parameter #2 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method execute ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlStatement ] + Parameter #1 [ <optional> $placeholders ] + Parameter #2 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method affectedRows ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method close ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method escapeString ] { + + - Parameters [1] { + Parameter #0 [ <required> $str ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method convertBoundParams ] { + + - Parameters [2] { + Parameter #0 [ <required> $sqlStatement ] + Parameter #1 [ <required> $params ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method lastInsertId ] { + + - Parameters [1] { + Parameter #0 [ <optional> $sequenceName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method begin ] { + + - Parameters [1] { + Parameter #0 [ <optional> $nesting ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method rollback ] { + + - Parameters [1] { + Parameter #0 [ <optional> $nesting ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method commit ] { + + - Parameters [1] { + Parameter #0 [ <optional> $nesting ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo> public method getTransactionLevel ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method isUnderTransaction ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method getInternalHandler ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter> public method setDialect ] { + + - Parameters [1] { + Parameter #0 [ <required> $dialect ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getDialect ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method fetchOne ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <optional> $fetchMode ] + Parameter #2 [ <optional> $placeholders ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method fetchAll ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <optional> $fetchMode ] + Parameter #2 [ <optional> $placeholders ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method insert ] { + + - Parameters [4] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <required> $values ] + Parameter #2 [ <optional> $fields ] + Parameter #3 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method update ] { + + - Parameters [5] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <required> $fields ] + Parameter #2 [ <required> $values ] + Parameter #3 [ <optional> $whereCondition ] + Parameter #4 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method delete ] { + + - Parameters [4] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $whereCondition ] + Parameter #2 [ <optional> $placeholders ] + Parameter #3 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getColumnList ] { + + - Parameters [1] { + Parameter #0 [ <required> $columnList ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method limit ] { + + - Parameters [2] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <required> $number ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method tableExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method viewExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method forUpdate ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method sharedLock ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method createTable ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $definition ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropTable ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + Parameter #2 [ <optional> $ifExists ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method createView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <optional> $schemaName ] + Parameter #2 [ <optional> $ifExists ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method addColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method modifyColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $columnName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method addIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $indexName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method addPrimaryKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropPrimaryKey ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method addForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $reference ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $referenceName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getColumnDefinition ] { + + - Parameters [1] { + Parameter #0 [ <required> $column ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method listTables ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method listViews ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method describeIndexes ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method describeReferences ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method tableOptions ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method createSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method releaseSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method rollbackSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method setNestedTransactionsWithSavepoints ] { + + - Parameters [1] { + Parameter #0 [ <required> $nestedTransactionsWithSavepoints ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method isNestedTransactionsWithSavepoints ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getNestedTransactionSavepointName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getDefaultIdValue ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method supportSequences ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method useExplicitIdValue ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getDescriptor ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getConnectionId ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getSQLStatement ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getRealSQLStatement ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getSQLVariables ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getSQLBindTypes ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getType ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getDialectType ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Db\Adapter\Pdo\Oracle extends Phalcon\Db\Adapter\Pdo implements Phalcon\Events\EventsAwareInterface, Phalcon\Db\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [1] { + Property [ protected static $_connectionConsecutive ] + } + + - Static methods [0] { + } + + - Properties [13] { + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_descriptor ] + Property [ <default> protected $_dialect ] + Property [ <default> protected $_connectionId ] + Property [ <default> protected $_sqlStatement ] + Property [ <default> protected $_sqlVariables ] + Property [ <default> protected $_sqlBindTypes ] + Property [ <default> protected $_transactionsWithSavepoints ] + Property [ <default> protected $_pdo ] + Property [ <default> protected $_affectedRows ] + Property [ <default> protected $_transactionLevel ] + Property [ <default> protected $_type ] + Property [ <default> protected $_dialectType ] + } + + - Methods [70] { + Method [ <internal:phalcon, overwrites Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method connect ] { + + - Parameters [1] { + Parameter #0 [ <optional> $descriptor ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\AdapterInterface, prototype Phalcon\Db\AdapterInterface> public method describeColumns ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method lastInsertId ] { + + - Parameters [1] { + Parameter #0 [ <optional> $sequenceName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method useExplicitIdValue ] { + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getDefaultIdValue ] { + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method supportSequences ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $descriptor ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo> public method prepare ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlStatement ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo> public method executePrepared ] { + + - Parameters [3] { + Parameter #0 [ <required> $statement ] + Parameter #1 [ <required> $placeholders ] + Parameter #2 [ <required> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method query ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlStatement ] + Parameter #1 [ <optional> $placeholders ] + Parameter #2 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method execute ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlStatement ] + Parameter #1 [ <optional> $placeholders ] + Parameter #2 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method affectedRows ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method close ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method escapeIdentifier ] { + + - Parameters [1] { + Parameter #0 [ <required> $identifier ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method escapeString ] { + + - Parameters [1] { + Parameter #0 [ <required> $str ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method convertBoundParams ] { + + - Parameters [2] { + Parameter #0 [ <required> $sqlStatement ] + Parameter #1 [ <required> $params ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method begin ] { + + - Parameters [1] { + Parameter #0 [ <optional> $nesting ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method rollback ] { + + - Parameters [1] { + Parameter #0 [ <optional> $nesting ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method commit ] { + + - Parameters [1] { + Parameter #0 [ <optional> $nesting ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo> public method getTransactionLevel ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method isUnderTransaction ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method getInternalHandler ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter> public method setDialect ] { + + - Parameters [1] { + Parameter #0 [ <required> $dialect ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getDialect ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method fetchOne ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <optional> $fetchMode ] + Parameter #2 [ <optional> $placeholders ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method fetchAll ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <optional> $fetchMode ] + Parameter #2 [ <optional> $placeholders ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method insert ] { + + - Parameters [4] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <required> $values ] + Parameter #2 [ <optional> $fields ] + Parameter #3 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method update ] { + + - Parameters [5] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <required> $fields ] + Parameter #2 [ <required> $values ] + Parameter #3 [ <optional> $whereCondition ] + Parameter #4 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method delete ] { + + - Parameters [4] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $whereCondition ] + Parameter #2 [ <optional> $placeholders ] + Parameter #3 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getColumnList ] { + + - Parameters [1] { + Parameter #0 [ <required> $columnList ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method limit ] { + + - Parameters [2] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <required> $number ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method tableExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method viewExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method forUpdate ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method sharedLock ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method createTable ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $definition ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropTable ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + Parameter #2 [ <optional> $ifExists ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method createView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <optional> $schemaName ] + Parameter #2 [ <optional> $ifExists ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method addColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method modifyColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $columnName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method addIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $indexName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method addPrimaryKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropPrimaryKey ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method addForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $reference ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $referenceName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getColumnDefinition ] { + + - Parameters [1] { + Parameter #0 [ <required> $column ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method listTables ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method listViews ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method describeIndexes ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method describeReferences ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method tableOptions ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method createSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method releaseSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method rollbackSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method setNestedTransactionsWithSavepoints ] { + + - Parameters [1] { + Parameter #0 [ <required> $nestedTransactionsWithSavepoints ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method isNestedTransactionsWithSavepoints ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getNestedTransactionSavepointName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getDescriptor ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getConnectionId ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getSQLStatement ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getRealSQLStatement ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getSQLVariables ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getSQLBindTypes ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getType ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getDialectType ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Db\Adapter\Pdo\Postgresql extends Phalcon\Db\Adapter\Pdo implements Phalcon\Events\EventsAwareInterface, Phalcon\Db\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [1] { + Property [ protected static $_connectionConsecutive ] + } + + - Static methods [0] { + } + + - Properties [13] { + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_descriptor ] + Property [ <default> protected $_dialect ] + Property [ <default> protected $_connectionId ] + Property [ <default> protected $_sqlStatement ] + Property [ <default> protected $_sqlVariables ] + Property [ <default> protected $_sqlBindTypes ] + Property [ <default> protected $_transactionsWithSavepoints ] + Property [ <default> protected $_pdo ] + Property [ <default> protected $_affectedRows ] + Property [ <default> protected $_transactionLevel ] + Property [ <default> protected $_type ] + Property [ <default> protected $_dialectType ] + } + + - Methods [70] { + Method [ <internal:phalcon, overwrites Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method connect ] { + + - Parameters [1] { + Parameter #0 [ <optional> $descriptor ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\AdapterInterface, prototype Phalcon\Db\AdapterInterface> public method describeColumns ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method useExplicitIdValue ] { + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getDefaultIdValue ] { + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method supportSequences ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $descriptor ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo> public method prepare ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlStatement ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo> public method executePrepared ] { + + - Parameters [3] { + Parameter #0 [ <required> $statement ] + Parameter #1 [ <required> $placeholders ] + Parameter #2 [ <required> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method query ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlStatement ] + Parameter #1 [ <optional> $placeholders ] + Parameter #2 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method execute ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlStatement ] + Parameter #1 [ <optional> $placeholders ] + Parameter #2 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method affectedRows ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method close ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method escapeIdentifier ] { + + - Parameters [1] { + Parameter #0 [ <required> $identifier ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method escapeString ] { + + - Parameters [1] { + Parameter #0 [ <required> $str ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method convertBoundParams ] { + + - Parameters [2] { + Parameter #0 [ <required> $sqlStatement ] + Parameter #1 [ <required> $params ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method lastInsertId ] { + + - Parameters [1] { + Parameter #0 [ <optional> $sequenceName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method begin ] { + + - Parameters [1] { + Parameter #0 [ <optional> $nesting ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method rollback ] { + + - Parameters [1] { + Parameter #0 [ <optional> $nesting ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method commit ] { + + - Parameters [1] { + Parameter #0 [ <optional> $nesting ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo> public method getTransactionLevel ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method isUnderTransaction ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter\Pdo, prototype Phalcon\Db\AdapterInterface> public method getInternalHandler ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter> public method setDialect ] { + + - Parameters [1] { + Parameter #0 [ <required> $dialect ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getDialect ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method fetchOne ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <optional> $fetchMode ] + Parameter #2 [ <optional> $placeholders ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method fetchAll ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <optional> $fetchMode ] + Parameter #2 [ <optional> $placeholders ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method insert ] { + + - Parameters [4] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <required> $values ] + Parameter #2 [ <optional> $fields ] + Parameter #3 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method update ] { + + - Parameters [5] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <required> $fields ] + Parameter #2 [ <required> $values ] + Parameter #3 [ <optional> $whereCondition ] + Parameter #4 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method delete ] { + + - Parameters [4] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $whereCondition ] + Parameter #2 [ <optional> $placeholders ] + Parameter #3 [ <optional> $dataTypes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getColumnList ] { + + - Parameters [1] { + Parameter #0 [ <required> $columnList ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method limit ] { + + - Parameters [2] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <required> $number ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method tableExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method viewExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method forUpdate ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method sharedLock ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method createTable ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $definition ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropTable ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + Parameter #2 [ <optional> $ifExists ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method createView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <optional> $schemaName ] + Parameter #2 [ <optional> $ifExists ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method addColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method modifyColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $columnName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method addIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $indexName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method addPrimaryKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropPrimaryKey ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method addForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $reference ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method dropForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $referenceName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getColumnDefinition ] { + + - Parameters [1] { + Parameter #0 [ <required> $column ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method listTables ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method listViews ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method describeIndexes ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method describeReferences ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method tableOptions ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method createSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method releaseSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method rollbackSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method setNestedTransactionsWithSavepoints ] { + + - Parameters [1] { + Parameter #0 [ <required> $nestedTransactionsWithSavepoints ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method isNestedTransactionsWithSavepoints ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getNestedTransactionSavepointName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getDescriptor ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getConnectionId ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getSQLStatement ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getRealSQLStatement ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getSQLVariables ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getSQLBindTypes ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getType ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Adapter, prototype Phalcon\Db\AdapterInterface> public method getDialectType ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Db\Dialect\Sqlite extends Phalcon\Db\Dialect implements Phalcon\Db\DialectInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_escapeChar ] + } + + - Methods [36] { + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method getColumnDefinition ] { + + - Parameters [1] { + Parameter #0 [ <required> $column ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method addColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method modifyColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $columnName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method addIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $indexName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method addPrimaryKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropPrimaryKey ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method addForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $reference ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $referenceName ] + } + } + + Method [ <internal:phalcon> protected method _getTableOptions ] { + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method createTable ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $definition ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropTable ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method createView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <optional> $ifExists ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method tableExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method viewExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method describeColumns ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method listTables ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method listViews ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method describeIndexes ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon> public method describeIndex ] { + + - Parameters [1] { + Parameter #0 [ <required> $indexName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method describeReferences ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method tableOptions ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method limit ] { + + - Parameters [2] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <required> $number ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method forUpdate ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method sharedLock ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method getColumnList ] { + + - Parameters [1] { + Parameter #0 [ <required> $columnList ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect> public method getSqlExpression ] { + + - Parameters [2] { + Parameter #0 [ <required> $expression ] + Parameter #1 [ <optional> $escapeChar ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect> public method getSqlTable ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $escapeChar ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method select ] { + + - Parameters [1] { + Parameter #0 [ <required> $definition ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method supportsSavepoints ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method supportsReleaseSavepoints ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method createSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method releaseSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method rollbackSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Db\Dialect\Mysql extends Phalcon\Db\Dialect implements Phalcon\Db\DialectInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_escapeChar ] + } + + - Methods [35] { + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method getColumnDefinition ] { + + - Parameters [1] { + Parameter #0 [ <required> $column ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method addColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method modifyColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $columnName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method addIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $indexName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method addPrimaryKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropPrimaryKey ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method addForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $reference ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $referenceName ] + } + } + + Method [ <internal:phalcon> protected method _getTableOptions ] { + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method createTable ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $definition ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropTable ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method createView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <optional> $ifExists ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method tableExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method viewExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method describeColumns ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method listTables ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method listViews ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method describeIndexes ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method describeReferences ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method tableOptions ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method limit ] { + + - Parameters [2] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <required> $number ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method forUpdate ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method sharedLock ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method getColumnList ] { + + - Parameters [1] { + Parameter #0 [ <required> $columnList ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect> public method getSqlExpression ] { + + - Parameters [2] { + Parameter #0 [ <required> $expression ] + Parameter #1 [ <optional> $escapeChar ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect> public method getSqlTable ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $escapeChar ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method select ] { + + - Parameters [1] { + Parameter #0 [ <required> $definition ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method supportsSavepoints ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method supportsReleaseSavepoints ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method createSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method releaseSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method rollbackSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Db\Dialect\Oracle extends Phalcon\Db\Dialect implements Phalcon\Db\DialectInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_escapeChar ] + } + + - Methods [35] { + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method getColumnDefinition ] { + + - Parameters [1] { + Parameter #0 [ <required> $column ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method addColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method modifyColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $columnName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method addIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $indexName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method addPrimaryKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropPrimaryKey ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method addForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $reference ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $referenceName ] + } + } + + Method [ <internal:phalcon> protected method _getTableOptions ] { + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method createTable ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $definition ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropTable ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method createView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <optional> $ifExists ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method tableExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method viewExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method describeColumns ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method listTables ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method listViews ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method describeIndexes ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method describeReferences ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method tableOptions ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\Dialect, prototype Phalcon\Db\Dialect> public method getSqlTable ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $escapeChar ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method limit ] { + + - Parameters [2] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <required> $number ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method select ] { + + - Parameters [1] { + Parameter #0 [ <required> $definition ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method supportsSavepoints ] { + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method supportsReleaseSavepoints ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method forUpdate ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method sharedLock ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method getColumnList ] { + + - Parameters [1] { + Parameter #0 [ <required> $columnList ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect> public method getSqlExpression ] { + + - Parameters [2] { + Parameter #0 [ <required> $expression ] + Parameter #1 [ <optional> $escapeChar ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method createSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method releaseSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method rollbackSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Db\Dialect\Postgresql extends Phalcon\Db\Dialect implements Phalcon\Db\DialectInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_escapeChar ] + } + + - Methods [35] { + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method getColumnDefinition ] { + + - Parameters [1] { + Parameter #0 [ <required> $column ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method addColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method modifyColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $column ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropColumn ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $columnName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method addIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropIndex ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $indexName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method addPrimaryKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $index ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropPrimaryKey ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method addForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $reference ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropForeignKey ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $referenceName ] + } + } + + Method [ <internal:phalcon> protected method _getTableOptions ] { + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method createTable ] { + + - Parameters [3] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <required> $definition ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropTable ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method createView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <required> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method dropView ] { + + - Parameters [3] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <required> $schemaName ] + Parameter #2 [ <optional> $ifExists ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method tableExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $tableName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method viewExists ] { + + - Parameters [2] { + Parameter #0 [ <required> $viewName ] + Parameter #1 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method describeColumns ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method listTables ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method listViews ] { + + - Parameters [1] { + Parameter #0 [ <optional> $schemaName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method describeIndexes ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method describeReferences ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Db\DialectInterface, prototype Phalcon\Db\DialectInterface> public method tableOptions ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $schema ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method limit ] { + + - Parameters [2] { + Parameter #0 [ <required> $sqlQuery ] + Parameter #1 [ <required> $number ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method forUpdate ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method sharedLock ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlQuery ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method getColumnList ] { + + - Parameters [1] { + Parameter #0 [ <required> $columnList ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect> public method getSqlExpression ] { + + - Parameters [2] { + Parameter #0 [ <required> $expression ] + Parameter #1 [ <optional> $escapeChar ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect> public method getSqlTable ] { + + - Parameters [2] { + Parameter #0 [ <required> $table ] + Parameter #1 [ <optional> $escapeChar ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method select ] { + + - Parameters [1] { + Parameter #0 [ <required> $definition ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method supportsSavepoints ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method supportsReleaseSavepoints ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method createSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method releaseSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Db\Dialect, prototype Phalcon\Db\DialectInterface> public method rollbackSavepoint ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Db\Profiler ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [3] { + Property [ <default> protected $_allProfiles ] + Property [ <default> protected $_activeProfile ] + Property [ <default> protected $_totalSeconds ] + } + + - Methods [7] { + Method [ <internal:phalcon> public method startProfile ] { + + - Parameters [3] { + Parameter #0 [ <required> $sqlStatement ] + Parameter #1 [ <optional> $sqlVariables ] + Parameter #2 [ <optional> $sqlBindTypes ] + } + } + + Method [ <internal:phalcon> public method stopProfile ] { + } + + Method [ <internal:phalcon> public method getNumberTotalStatements ] { + } + + Method [ <internal:phalcon> public method getTotalElapsedSeconds ] { + } + + Method [ <internal:phalcon> public method getProfiles ] { + } + + Method [ <internal:phalcon> public method reset ] { + } + + Method [ <internal:phalcon> public method getLastProfile ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Db\Profiler\Item ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [5] { + Property [ <default> protected $_sqlStatement ] + Property [ <default> protected $_sqlVariables ] + Property [ <default> protected $_sqlBindTypes ] + Property [ <default> protected $_initialTime ] + Property [ <default> protected $_finalTime ] + } + + - Methods [11] { + Method [ <internal:phalcon> public method setSQLStatement ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlStatement ] + } + } + + Method [ <internal:phalcon> public method getSQLStatement ] { + } + + Method [ <internal:phalcon> public method setSQLVariables ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlVariables ] + } + } + + Method [ <internal:phalcon> public method getSQLVariables ] { + } + + Method [ <internal:phalcon> public method setSQLBindTypes ] { + + - Parameters [1] { + Parameter #0 [ <required> $sqlBindTypes ] + } + } + + Method [ <internal:phalcon> public method getSQLBindTypes ] { + } + + Method [ <internal:phalcon> public method setInitialTime ] { + + - Parameters [1] { + Parameter #0 [ <required> $initialTime ] + } + } + + Method [ <internal:phalcon> public method setFinalTime ] { + + - Parameters [1] { + Parameter #0 [ <required> $finalTime ] + } + } + + Method [ <internal:phalcon> public method getInitialTime ] { + } + + Method [ <internal:phalcon> public method getFinalTime ] { + } + + Method [ <internal:phalcon> public method getTotalElapsedSeconds ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Db\RawValue ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_value ] + } + + - Methods [3] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $value ] + } + } + + Method [ <internal:phalcon> public method getValue ] { + } + + Method [ <internal:phalcon> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Db\Reference implements Phalcon\Db\ReferenceInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ <internal:phalcon> static public method __set_state ] { + + - Parameters [1] { + Parameter #0 [ <optional> array $properties ] + } + } + } + + - Properties [6] { + Property [ <default> protected $_schemaName ] + Property [ <default> protected $_referencedSchema ] + Property [ <default> protected $_referenceName ] + Property [ <default> protected $_referencedTable ] + Property [ <default> protected $_columns ] + Property [ <default> protected $_referencedColumns ] + } + + - Methods [7] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $referenceName ] + Parameter #1 [ <required> $definition ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Db\ReferenceInterface> public method getName ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\ReferenceInterface> public method getSchemaName ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\ReferenceInterface> public method getReferencedSchema ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\ReferenceInterface> public method getColumns ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\ReferenceInterface> public method getReferencedTable ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Db\ReferenceInterface> public method getReferencedColumns ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Db\Result\Pdo ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [8] { + Property [ <default> protected $_connection ] + Property [ <default> protected $_result ] + Property [ <default> protected $_fetchMode ] + Property [ <default> protected $_pdoStatement ] + Property [ <default> protected $_sqlStatement ] + Property [ <default> protected $_bindParams ] + Property [ <default> protected $_bindTypes ] + Property [ <default> protected $_rowCount ] + } + + - Methods [10] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [5] { + Parameter #0 [ <required> $connection ] + Parameter #1 [ <required> $result ] + Parameter #2 [ <optional> $sqlStatement ] + Parameter #3 [ <optional> $bindParams ] + Parameter #4 [ <optional> $bindTypes ] + } + } + + Method [ <internal:phalcon> public method execute ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method fetch ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method fetchArray ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method fetchAll ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method numRows ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method dataSeek ] { + + - Parameters [1] { + Parameter #0 [ <required> $number ] + } + } + + Method [ <internal:phalcon> public method setFetchMode ] { + + - Parameters [3] { + Parameter #0 [ <required> $fetchMode ] + Parameter #1 [ <optional> $fetchArg1 ] + Parameter #2 [ <optional> $fetchArg2 ] + } + } + + Method [ <internal:phalcon> public method getInternalResult ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method nextRowset ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Acl\Role implements Phalcon\Acl\RoleInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_name ] + Property [ <default> protected $_description ] + } + + - Methods [4] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $description ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Acl\RoleInterface> public method getName ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Acl\RoleInterface> public method getDescription ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method __toString ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Acl\Resource implements Phalcon\Acl\ResourceInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_name ] + Property [ <default> protected $_description ] + } + + - Methods [4] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $description ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Acl\ResourceInterface> public method getName ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Acl\ResourceInterface> public method getDescription ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method __toString ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Acl\Adapter\Memory extends Phalcon\Acl\Adapter implements Phalcon\Acl\AdapterInterface, Phalcon\Events\EventsAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [13] { + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_defaultAccess ] + Property [ <default> protected $_accessGranted ] + Property [ <default> protected $_activeRole ] + Property [ <default> protected $_activeResource ] + Property [ <default> protected $_activeAccess ] + Property [ <default> protected $_rolesNames ] + Property [ <default> protected $_roles ] + Property [ <default> protected $_resourcesNames ] + Property [ <default> protected $_resources ] + Property [ <default> protected $_access ] + Property [ <default> protected $_roleInherits ] + Property [ <default> protected $_accessList ] + } + + - Methods [21] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Acl\AdapterInterface, prototype Phalcon\Acl\AdapterInterface> public method addRole ] { + + - Parameters [2] { + Parameter #0 [ <required> $role ] + Parameter #1 [ <optional> $accessInherits ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Acl\AdapterInterface, prototype Phalcon\Acl\AdapterInterface> public method addInherit ] { + + - Parameters [2] { + Parameter #0 [ <required> $roleName ] + Parameter #1 [ <required> $roleToInherit ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Acl\AdapterInterface, prototype Phalcon\Acl\AdapterInterface> public method isRole ] { + + - Parameters [1] { + Parameter #0 [ <required> $roleName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Acl\AdapterInterface, prototype Phalcon\Acl\AdapterInterface> public method isResource ] { + + - Parameters [1] { + Parameter #0 [ <required> $resourceName ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Acl\AdapterInterface, prototype Phalcon\Acl\AdapterInterface> public method addResource ] { + + - Parameters [2] { + Parameter #0 [ <required> $resource ] + Parameter #1 [ <optional> $accessList ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Acl\AdapterInterface, prototype Phalcon\Acl\AdapterInterface> public method addResourceAccess ] { + + - Parameters [2] { + Parameter #0 [ <required> $resourceName ] + Parameter #1 [ <required> $accessList ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Acl\AdapterInterface, prototype Phalcon\Acl\AdapterInterface> public method dropResourceAccess ] { + + - Parameters [2] { + Parameter #0 [ <required> $resourceName ] + Parameter #1 [ <required> $accessList ] + } + } + + Method [ <internal:phalcon> protected method _allowOrDeny ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Acl\AdapterInterface, prototype Phalcon\Acl\AdapterInterface> public method allow ] { + + - Parameters [3] { + Parameter #0 [ <required> $roleName ] + Parameter #1 [ <required> $resourceName ] + Parameter #2 [ <required> $access ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Acl\AdapterInterface, prototype Phalcon\Acl\AdapterInterface> public method deny ] { + + - Parameters [3] { + Parameter #0 [ <required> $roleName ] + Parameter #1 [ <required> $resourceName ] + Parameter #2 [ <required> $access ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Acl\AdapterInterface, prototype Phalcon\Acl\AdapterInterface> public method isAllowed ] { + + - Parameters [3] { + Parameter #0 [ <required> $role ] + Parameter #1 [ <required> $resource ] + Parameter #2 [ <required> $access ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Acl\AdapterInterface, prototype Phalcon\Acl\AdapterInterface> public method getRoles ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Acl\AdapterInterface, prototype Phalcon\Acl\AdapterInterface> public method getResources ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Acl\Adapter, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Acl\Adapter, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Acl\Adapter, prototype Phalcon\Acl\AdapterInterface> public method setDefaultAction ] { + + - Parameters [1] { + Parameter #0 [ <required> $defaultAccess ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Acl\Adapter, prototype Phalcon\Acl\AdapterInterface> public method getDefaultAction ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Acl\Adapter, prototype Phalcon\Acl\AdapterInterface> public method getActiveRole ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Acl\Adapter, prototype Phalcon\Acl\AdapterInterface> public method getActiveResource ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Acl\Adapter, prototype Phalcon\Acl\AdapterInterface> public method getActiveAccess ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Kernel ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [3] { + Method [ <internal:phalcon> static public method preComputeHashKey ] { + + - Parameters [1] { + Parameter #0 [ <required> $arrKey ] + } + } + + Method [ <internal:phalcon> static public method preComputeHashKey32 ] { + + - Parameters [1] { + Parameter #0 [ <required> $arrKey ] + } + } + + Method [ <internal:phalcon> static public method preComputeHashKey64 ] { + + - Parameters [1] { + Parameter #0 [ <required> $arrKey ] + } + } + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Class [ <internal:phalcon> class Phalcon\Debug ] { + + - Constants [0] { + } + + - Static properties [2] { + Property [ protected static $_isActive ] + Property [ protected static $_charset ] + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ <default> public $_uri ] + Property [ <default> public $_theme ] + Property [ <default> protected $_hideDocumentRoot ] + Property [ <default> protected $_showBackTrace ] + Property [ <default> protected $_showFiles ] + Property [ <default> protected $_showFileFragment ] + Property [ <default> protected $_data ] + Property [ <default> protected $_beforeContext ] + Property [ <default> protected $_afterContext ] + } + + - Methods [25] { + Method [ <internal:phalcon> public method setUri ] { + + - Parameters [1] { + Parameter #0 [ <required> $uri ] + } + } + + Method [ <internal:phalcon> public method setShowBackTrace ] { + + - Parameters [1] { + Parameter #0 [ <required> $showBackTrace ] + } + } + + Method [ <internal:phalcon> public method setShowFiles ] { + + - Parameters [1] { + Parameter #0 [ <required> $showFiles ] + } + } + + Method [ <internal:phalcon> public method setShowFileFragment ] { + + - Parameters [1] { + Parameter #0 [ <required> $showFileFragment ] + } + } + + Method [ <internal:phalcon> public method listen ] { + + - Parameters [2] { + Parameter #0 [ <optional> $exceptions ] + Parameter #1 [ <optional> $lowSeverity ] + } + } + + Method [ <internal:phalcon> public method listenExceptions ] { + } + + Method [ <internal:phalcon> public method listenLowSeverity ] { + } + + Method [ <internal:phalcon> public method debugVar ] { + + - Parameters [2] { + Parameter #0 [ <required> $var ] + Parameter #1 [ <optional> $key ] + } + } + + Method [ <internal:phalcon> public method clearVars ] { + } + + Method [ <internal:phalcon> protected method _escapeString ] { + } + + Method [ <internal:phalcon> protected method _getArrayDump ] { + } + + Method [ <internal:phalcon> protected method _getVarDump ] { + } + + Method [ <internal:phalcon> public method getMajorVersion ] { + } + + Method [ <internal:phalcon> public method getVersion ] { + } + + Method [ <internal:phalcon> public method getCssSources ] { + } + + Method [ <internal:phalcon> public method getJsSources ] { + } + + Method [ <internal:phalcon> protected method showTraceItem ] { + } + + Method [ <internal:phalcon> public method onUncaughtException ] { + + - Parameters [1] { + Parameter #0 [ <required> $exception ] + } + } + + Method [ <internal:phalcon> public method getCharset ] { + } + + Method [ <internal:phalcon> public method setCharset ] { + + - Parameters [1] { + Parameter #0 [ <required> $charset ] + } + } + + Method [ <internal:phalcon> public method getLinesBeforeContext ] { + } + + Method [ <internal:phalcon> public method setLinesBeforeContext ] { + + - Parameters [1] { + Parameter #0 [ <required> $lines ] + } + } + + Method [ <internal:phalcon> public method getLinesAfterContext ] { + } + + Method [ <internal:phalcon> public method setLinesAfterContext ] { + + - Parameters [1] { + Parameter #0 [ <required> $lines ] + } + } + + Method [ <internal:phalcon> protected method getFileLink ] { + + - Parameters [3] { + Parameter #0 [ <required> $file ] + Parameter #1 [ <required> $line ] + Parameter #2 [ <required> $format ] + } + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Text ] { + + - Constants [5] { + Constant [ integer RANDOM_ALNUM ] { 0 } + Constant [ integer RANDOM_ALPHA ] { 1 } + Constant [ integer RANDOM_HEXDEC ] { 2 } + Constant [ integer RANDOM_NUMERIC ] { 3 } + Constant [ integer RANDOM_NOZERO ] { 4 } + } + + - Static properties [0] { + } + + - Static methods [8] { + Method [ <internal:phalcon> static public method camelize ] { + + - Parameters [1] { + Parameter #0 [ <required> $str ] + } + } + + Method [ <internal:phalcon> static public method uncamelize ] { + + - Parameters [1] { + Parameter #0 [ <required> $str ] + } + } + + Method [ <internal:phalcon> static public method increment ] { + + - Parameters [2] { + Parameter #0 [ <required> $str ] + Parameter #1 [ <optional> $separator ] + } + } + + Method [ <internal:phalcon> static public method random ] { + + - Parameters [2] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <optional> $length ] + } + } + + Method [ <internal:phalcon> static public method startsWith ] { + + - Parameters [3] { + Parameter #0 [ <required> $str ] + Parameter #1 [ <required> $start ] + Parameter #2 [ <optional> $ignoreCase ] + } + } + + Method [ <internal:phalcon> static public method endsWith ] { + + - Parameters [3] { + Parameter #0 [ <required> $str ] + Parameter #1 [ <required> $end ] + Parameter #2 [ <optional> $ignoreCase ] + } + } + + Method [ <internal:phalcon> static public method lower ] { + + - Parameters [1] { + Parameter #0 [ <required> $str ] + } + } + + Method [ <internal:phalcon> static public method upper ] { + + - Parameters [1] { + Parameter #0 [ <required> $str ] + } + } + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Class [ <internal:phalcon> class Phalcon\Security implements Phalcon\DI\InjectionAwareInterface ] { + + - Constants [9] { + Constant [ integer CRYPT_DEFAULT ] { 0 } + Constant [ integer CRYPT_STD_DES ] { 1 } + Constant [ integer CRYPT_EXT_DES ] { 2 } + Constant [ integer CRYPT_MD5 ] { 3 } + Constant [ integer CRYPT_BLOWFISH ] { 4 } + Constant [ integer CRYPT_BLOWFISH_X ] { 5 } + Constant [ integer CRYPT_BLOWFISH_Y ] { 6 } + Constant [ integer CRYPT_SHA256 ] { 7 } + Constant [ integer CRYPT_SHA512 ] { 8 } + } + + - Static properties [0] { + } + + - Static methods [3] { + Method [ <internal:phalcon> static public method computeHmac ] { + + - Parameters [4] { + Parameter #0 [ <required> $data ] + Parameter #1 [ <required> $key ] + Parameter #2 [ <required> $algo ] + Parameter #3 [ <optional> $raw ] + } + } + + Method [ <internal:phalcon> static public method deriveKey ] { + + - Parameters [5] { + Parameter #0 [ <required> $password ] + Parameter #1 [ <required> $salt ] + Parameter #2 [ <optional> $hash ] + Parameter #3 [ <optional> $iterations ] + Parameter #4 [ <optional> $size ] + } + } + + Method [ <internal:phalcon> static public method pbkdf2 ] { + + - Parameters [5] { + Parameter #0 [ <required> $password ] + Parameter #1 [ <required> $salt ] + Parameter #2 [ <optional> $hash ] + Parameter #3 [ <optional> $iterations ] + Parameter #4 [ <optional> $size ] + } + } + } + + - Properties [5] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_workFactor ] + Property [ <default> protected $_numberBytes ] + Property [ <default> protected $_csrf ] + Property [ <default> protected $_defaultHash ] + } + + - Methods [16] { + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + } + + Method [ <internal:phalcon> public method setRandomBytes ] { + + - Parameters [1] { + Parameter #0 [ <required> $randomBytes ] + } + } + + Method [ <internal:phalcon> public method getRandomBytes ] { + } + + Method [ <internal:phalcon> public method setWorkFactor ] { + + - Parameters [1] { + Parameter #0 [ <required> $workFactor ] + } + } + + Method [ <internal:phalcon> public method getWorkFactor ] { + } + + Method [ <internal:phalcon> public method getSaltBytes ] { + } + + Method [ <internal:phalcon> public method hash ] { + + - Parameters [2] { + Parameter #0 [ <required> $password ] + Parameter #1 [ <optional> $workFactor ] + } + } + + Method [ <internal:phalcon> public method checkHash ] { + + - Parameters [3] { + Parameter #0 [ <required> $password ] + Parameter #1 [ <required> $passwordHash ] + Parameter #2 [ <optional> $maxPasswordLength ] + } + } + + Method [ <internal:phalcon> public method isLegacyHash ] { + + - Parameters [1] { + Parameter #0 [ <required> $passwordHash ] + } + } + + Method [ <internal:phalcon> public method getTokenKey ] { + + - Parameters [1] { + Parameter #0 [ <optional> $numberBytes ] + } + } + + Method [ <internal:phalcon> public method getToken ] { + + - Parameters [1] { + Parameter #0 [ <optional> $numberBytes ] + } + } + + Method [ <internal:phalcon> public method checkToken ] { + + - Parameters [2] { + Parameter #0 [ <optional> $tokenKey ] + Parameter #1 [ <optional> $tokenValue ] + } + } + + Method [ <internal:phalcon> public method getSessionToken ] { + } + + Method [ <internal:phalcon> public method getDefaultHash ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method setDefaultHash ] { + + - Parameters [1] { + Parameter #0 [ <required> $hash ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Version ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [3] { + Method [ <internal:phalcon> static protected method _getVersion ] { + } + + Method [ <internal:phalcon> static public method get ] { + } + + Method [ <internal:phalcon> static public method getId ] { + } + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Class [ <internal:phalcon> <iterateable> class Phalcon\Session\Bag implements Phalcon\DI\InjectionAwareInterface, Phalcon\Session\BagInterface, IteratorAggregate, Traversable, ArrayAccess, Countable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [5] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_name ] + Property [ <default> protected $_data ] + Property [ <default> protected $_initialized ] + Property [ <default> protected $_session ] + } + + - Methods [19] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Session\BagInterface> public method initialize ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Session\BagInterface> public method destroy ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Session\BagInterface> public method set ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Session\BagInterface> public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Session\BagInterface> public method has ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Session\BagInterface> public method remove ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, prototype IteratorAggregate> public method getIterator ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method &__get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon> public method __set ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> public method __isset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon> public method __unset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method &offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, prototype Countable> public method count ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> <iterateable> class Phalcon\Session\Adapter\Files extends Phalcon\Session\Adapter implements ArrayAccess, Traversable, IteratorAggregate, Countable, Phalcon\Session\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [3] { + Property [ <default> protected $_uniqueId ] + Property [ <default> protected $_started ] + Property [ <default> protected $_options ] + } + + - Methods [23] { + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, dtor> public method __destruct ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method start ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method setOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method getOptions ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $index ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method set ] { + + - Parameters [2] { + Parameter #0 [ <required> $index ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method has ] { + + - Parameters [1] { + Parameter #0 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method remove ] { + + - Parameters [1] { + Parameter #0 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method getId ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method isStarted ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method destroy ] { + + - Parameters [1] { + Parameter #0 [ <optional> $session_id ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter> public method &__get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter> public method __set ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter> public method __isset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter> public method __unset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype ArrayAccess> public method &offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Countable> public method count ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype IteratorAggregate> public method getIterator ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter> public method setId ] { + + - Parameters [1] { + Parameter #0 [ <required> $sid ] + } + } + } + } + + Class [ <internal:phalcon> <iterateable> class Phalcon\Session\Adapter\Memcache extends Phalcon\Session\Adapter implements ArrayAccess, Traversable, IteratorAggregate, Countable, Phalcon\Session\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [5] { + Property [ <default> protected $_uniqueId ] + Property [ <default> protected $_started ] + Property [ <default> protected $_options ] + Property [ <default> protected $_lifetime ] + Property [ <default> protected $_memcache ] + } + + - Methods [28] { + Method [ <internal:phalcon, overwrites Phalcon\Session\Adapter, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon> public method open ] { + } + + Method [ <internal:phalcon> public method close ] { + } + + Method [ <internal:phalcon> public method read ] { + + - Parameters [1] { + Parameter #0 [ <required> $sessionId ] + } + } + + Method [ <internal:phalcon> public method write ] { + + - Parameters [2] { + Parameter #0 [ <required> $sessionId ] + Parameter #1 [ <required> $data ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method destroy ] { + + - Parameters [1] { + Parameter #0 [ <optional> $sessionId ] + } + } + + Method [ <internal:phalcon> public method gc ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, dtor> public method __destruct ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method start ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method setOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method getOptions ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $index ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method set ] { + + - Parameters [2] { + Parameter #0 [ <required> $index ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method has ] { + + - Parameters [1] { + Parameter #0 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method remove ] { + + - Parameters [1] { + Parameter #0 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method getId ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method isStarted ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter> public method &__get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter> public method __set ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter> public method __isset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter> public method __unset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype ArrayAccess> public method &offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Countable> public method count ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype IteratorAggregate> public method getIterator ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter> public method setId ] { + + - Parameters [1] { + Parameter #0 [ <required> $sid ] + } + } + } + } + + Class [ <internal:phalcon> <iterateable> class Phalcon\Session\Adapter\Libmemcached extends Phalcon\Session\Adapter implements ArrayAccess, Traversable, IteratorAggregate, Countable, Phalcon\Session\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [5] { + Property [ <default> protected $_uniqueId ] + Property [ <default> protected $_started ] + Property [ <default> protected $_options ] + Property [ <default> protected $_lifetime ] + Property [ <default> protected $_libmemcached ] + } + + - Methods [28] { + Method [ <internal:phalcon, overwrites Phalcon\Session\Adapter, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon> public method open ] { + } + + Method [ <internal:phalcon> public method close ] { + } + + Method [ <internal:phalcon> public method read ] { + + - Parameters [1] { + Parameter #0 [ <required> $sessionId ] + } + } + + Method [ <internal:phalcon> public method write ] { + + - Parameters [2] { + Parameter #0 [ <required> $sessionId ] + Parameter #1 [ <required> $data ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method destroy ] { + + - Parameters [1] { + Parameter #0 [ <optional> $sessionId ] + } + } + + Method [ <internal:phalcon> public method gc ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, dtor> public method __destruct ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method start ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method setOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method getOptions ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $index ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method set ] { + + - Parameters [2] { + Parameter #0 [ <required> $index ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method has ] { + + - Parameters [1] { + Parameter #0 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method remove ] { + + - Parameters [1] { + Parameter #0 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method getId ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Phalcon\Session\AdapterInterface> public method isStarted ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter> public method &__get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter> public method __set ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter> public method __isset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter> public method __unset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype ArrayAccess> public method &offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype Countable> public method count ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter, prototype IteratorAggregate> public method getIterator ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Session\Adapter> public method setId ] { + + - Parameters [1] { + Parameter #0 [ <required> $sid ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Filter implements Phalcon\FilterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_filters ] + } + + - Methods [4] { + Method [ <internal:phalcon, prototype Phalcon\FilterInterface> public method add ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\FilterInterface> public method sanitize ] { + + - Parameters [2] { + Parameter #0 [ <required> $value ] + Parameter #1 [ <required> $filters ] + } + } + + Method [ <internal:phalcon> protected method _sanitize ] { + } + + Method [ <internal:phalcon, prototype Phalcon\FilterInterface> public method getFilters ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\DI\FactoryDefault\CLI extends Phalcon\DI\FactoryDefault implements Phalcon\DiInterface ] { + + - Constants [0] { + } + + - Static properties [1] { + Property [ protected static $_default ] + } + + - Static methods [3] { + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> static public method setDefault ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> static public method getDefault ] { + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> static public method reset ] { + } + } + + - Properties [0] { + } + + - Methods [20] { + Method [ <internal:phalcon, overwrites Phalcon\DI\FactoryDefault, ctor> public method __construct ] { + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> public method set ] { + + - Parameters [3] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <optional> $shared ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> public method remove ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI> public method getRaw ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> public method getService ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> public method setService ] { + + - Parameters [1] { + Parameter #0 [ <required> $rawDefinition ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> public method getShared ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> public method has ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> public method wasFreshInstance ] { + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype Phalcon\DiInterface> public method getServices ] { + } + + Method [ <internal:phalcon, inherits Phalcon\DI> public method attempt ] { + + - Parameters [3] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <optional> $shared ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI> public method setShared ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <required> $definition ] + } + } + + Method [ <internal, deprecated:phalcon, inherits Phalcon\DI> public method setRaw ] { + + - Parameters [1] { + Parameter #0 [ <required> $rawDefinition ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype ArrayAccess> public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI> public method __call ] { + + - Parameters [2] { + Parameter #0 [ <required> $method ] + Parameter #1 [ <optional> $arguments ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI> public method __clone ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\DI\Service implements Phalcon\DI\ServiceInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ <internal:phalcon> static public method __set_state ] { + + - Parameters [1] { + Parameter #0 [ <optional> array $properties ] + } + } + } + + - Properties [0] { + } + + - Methods [11] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [3] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <optional> $shared ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\ServiceInterface> public method getName ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\ServiceInterface> public method setShared ] { + + - Parameters [1] { + Parameter #0 [ <required> $shared ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\ServiceInterface> public method isShared ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method setSharedInstance ] { + + - Parameters [1] { + Parameter #0 [ <required> $sharedInstance ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\ServiceInterface> public method setDefinition ] { + + - Parameters [1] { + Parameter #0 [ <required> $definition ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\ServiceInterface> public method getDefinition ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\ServiceInterface> public method resolve ] { + + - Parameters [2] { + Parameter #0 [ <optional> $parameters ] + Parameter #1 [ <optional> $dependencyInjector ] + } + } + + Method [ <internal:phalcon> public method setParameter ] { + + - Parameters [2] { + Parameter #0 [ <required> $position ] + Parameter #1 [ <required> $parameter ] + } + } + + Method [ <internal:phalcon> public method getParameter ] { + + - Parameters [1] { + Parameter #0 [ <required> $position ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\ServiceInterface> public method isResolved ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\DI\Service\Builder ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [3] { + Method [ <internal:phalcon> protected method _buildParameter ] { + } + + Method [ <internal:phalcon> protected method _buildParameters ] { + } + + Method [ <internal:phalcon> public method build ] { + + - Parameters [3] { + Parameter #0 [ <required> $dependencyInjector ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <optional> $parameters ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Flash\Direct extends Phalcon\Flash implements Phalcon\FlashInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [3] { + Property [ <default> protected $_cssClasses ] + Property [ <default> protected $_implicitFlush ] + Property [ <default> protected $_automaticHtml ] + } + + - Methods [10] { + Method [ <internal:phalcon, prototype Phalcon\FlashInterface> public method message ] { + + - Parameters [2] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $message ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Flash, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $cssClasses ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Flash> public method setImplicitFlush ] { + + - Parameters [1] { + Parameter #0 [ <required> $implicitFlush ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Flash> public method setAutomaticHtml ] { + + - Parameters [1] { + Parameter #0 [ <required> $automaticHtml ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Flash> public method setCssClasses ] { + + - Parameters [1] { + Parameter #0 [ <required> $cssClasses ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Flash, prototype Phalcon\FlashInterface> public method error ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Flash, prototype Phalcon\FlashInterface> public method notice ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Flash, prototype Phalcon\FlashInterface> public method success ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Flash, prototype Phalcon\FlashInterface> public method warning ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Flash> public method outputMessage ] { + + - Parameters [2] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $message ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Flash\Session extends Phalcon\Flash implements Phalcon\FlashInterface, Phalcon\DI\InjectionAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $_cssClasses ] + Property [ <default> protected $_implicitFlush ] + Property [ <default> protected $_automaticHtml ] + Property [ <default> protected $_dependencyInjector ] + } + + - Methods [17] { + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + } + + Method [ <internal:phalcon> protected method _getSessionMessages ] { + } + + Method [ <internal:phalcon> protected method _setSessionMessages ] { + } + + Method [ <internal:phalcon, prototype Phalcon\FlashInterface> public method message ] { + + - Parameters [2] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $message ] + } + } + + Method [ <internal:phalcon> public method getMessages ] { + + - Parameters [2] { + Parameter #0 [ <optional> $type ] + Parameter #1 [ <optional> $remove ] + } + } + + Method [ <internal:phalcon> public method output ] { + + - Parameters [1] { + Parameter #0 [ <optional> $remove ] + } + } + + Method [ <internal:phalcon> public method has ] { + + - Parameters [1] { + Parameter #0 [ <required> $type ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Flash, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $cssClasses ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Flash> public method setImplicitFlush ] { + + - Parameters [1] { + Parameter #0 [ <required> $implicitFlush ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Flash> public method setAutomaticHtml ] { + + - Parameters [1] { + Parameter #0 [ <required> $automaticHtml ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Flash> public method setCssClasses ] { + + - Parameters [1] { + Parameter #0 [ <required> $cssClasses ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Flash, prototype Phalcon\FlashInterface> public method error ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Flash, prototype Phalcon\FlashInterface> public method notice ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Flash, prototype Phalcon\FlashInterface> public method success ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Flash, prototype Phalcon\FlashInterface> public method warning ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Flash> public method outputMessage ] { + + - Parameters [2] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $message ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\CLI\Task extends Phalcon\DI\Injectable implements Phalcon\Events\EventsAwareInterface, Phalcon\DI\InjectionAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_eventsManager ] + } + + - Methods [5] { + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable> public method __get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\CLI\Router implements Phalcon\DI\InjectionAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_module ] + Property [ <default> protected $_task ] + Property [ <default> protected $_action ] + Property [ <default> protected $_params ] + Property [ <default> protected $_defaultModule ] + Property [ <default> protected $_defaultTask ] + Property [ <default> protected $_defaultAction ] + Property [ <default> protected $_defaultParams ] + } + + - Methods [11] { + Method [ <internal:phalcon, ctor> public method __construct ] { + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + } + + Method [ <internal:phalcon> public method setDefaultModule ] { + + - Parameters [1] { + Parameter #0 [ <required> $moduleName ] + } + } + + Method [ <internal:phalcon> public method setDefaultTask ] { + + - Parameters [1] { + Parameter #0 [ <required> $taskName ] + } + } + + Method [ <internal:phalcon> public method setDefaultAction ] { + + - Parameters [1] { + Parameter #0 [ <required> $actionName ] + } + } + + Method [ <internal:phalcon> public method handle ] { + + - Parameters [1] { + Parameter #0 [ <optional> $arguments ] + } + } + + Method [ <internal:phalcon> public method getModuleName ] { + } + + Method [ <internal:phalcon> public method getTaskName ] { + } + + Method [ <internal:phalcon> public method getActionName ] { + } + + Method [ <internal:phalcon> public method getParams ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\CLI\Console implements Phalcon\DI\InjectionAwareInterface, Phalcon\Events\EventsAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_modules ] + Property [ <default> protected $_moduleObject ] + } + + - Methods [9] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + } + + Method [ <internal:phalcon> public method registerModules ] { + + - Parameters [1] { + Parameter #0 [ <required> $modules ] + } + } + + Method [ <internal:phalcon> public method addModules ] { + + - Parameters [1] { + Parameter #0 [ <required> $modules ] + } + } + + Method [ <internal:phalcon> public method getModules ] { + } + + Method [ <internal:phalcon> public method handle ] { + + - Parameters [1] { + Parameter #0 [ <optional> $arguments ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\CLI\Dispatcher extends Phalcon\Dispatcher implements Phalcon\Events\EventsAwareInterface, Phalcon\DI\InjectionAwareInterface, Phalcon\DispatcherInterface ] { + + - Constants [6] { + Constant [ integer EXCEPTION_NO_DI ] { 0 } + Constant [ integer EXCEPTION_CYCLIC_ROUTING ] { 1 } + Constant [ integer EXCEPTION_HANDLER_NOT_FOUND ] { 2 } + Constant [ integer EXCEPTION_INVALID_HANDLER ] { 3 } + Constant [ integer EXCEPTION_INVALID_PARAMS ] { 4 } + Constant [ integer EXCEPTION_ACTION_NOT_FOUND ] { 5 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [20] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_activeHandler ] + Property [ <default> protected $_finished ] + Property [ <default> protected $_forwarded ] + Property [ <default> protected $_moduleName ] + Property [ <default> protected $_namespaceName ] + Property [ <default> protected $_handlerName ] + Property [ <default> protected $_actionName ] + Property [ <default> protected $_params ] + Property [ <default> protected $_returnedValue ] + Property [ <default> protected $_lastHandler ] + Property [ <default> protected $_defaultNamespace ] + Property [ <default> protected $_actionSuffix ] + Property [ <default> protected $_isExactHandler ] + Property [ <default> protected $_previousHandlerName ] + Property [ <default> protected $_previousActionName ] + Property [ <default> protected $_handlerSuffix ] + Property [ <default> protected $_defaultHandler ] + Property [ <default> protected $_defaultAction ] + } + + - Methods [36] { + Method [ <internal:phalcon> public method setTaskSuffix ] { + + - Parameters [1] { + Parameter #0 [ <required> $taskSuffix ] + } + } + + Method [ <internal:phalcon> public method setDefaultTask ] { + + - Parameters [1] { + Parameter #0 [ <required> $taskName ] + } + } + + Method [ <internal:phalcon> public method setTaskName ] { + + - Parameters [1] { + Parameter #0 [ <required> $taskName ] + } + } + + Method [ <internal:phalcon> public method getTaskName ] { + } + + Method [ <internal:phalcon> protected method _throwDispatchException ] { + } + + Method [ <internal:phalcon> protected method _handleException ] { + } + + Method [ <internal:phalcon> public method getTaskClass ] { + } + + Method [ <internal:phalcon> public method getLastTask ] { + } + + Method [ <internal:phalcon> public method getActiveTask ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, ctor> public method __construct ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method setActionSuffix ] { + + - Parameters [1] { + Parameter #0 [ <required> $actionSuffix ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher> public method setModuleName ] { + + - Parameters [1] { + Parameter #0 [ <required> $moduleName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher> public method getModuleName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher> public method setNamespaceName ] { + + - Parameters [1] { + Parameter #0 [ <required> $namespaceName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher> public method getNamespaceName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method setDefaultNamespace ] { + + - Parameters [1] { + Parameter #0 [ <required> $namespace ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher> public method getDefaultNamespace ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method setDefaultAction ] { + + - Parameters [1] { + Parameter #0 [ <required> $actionName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method setActionName ] { + + - Parameters [1] { + Parameter #0 [ <required> $actionName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method getActionName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method setParams ] { + + - Parameters [1] { + Parameter #0 [ <required> $params ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method getParams ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method setParam ] { + + - Parameters [2] { + Parameter #0 [ <required> $param ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method getParam ] { + + - Parameters [2] { + Parameter #0 [ <required> $param ] + Parameter #1 [ <optional> $filters ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher> public method getActiveMethod ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method isFinished ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher> public method setReturnedValue ] { + + - Parameters [1] { + Parameter #0 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method getReturnedValue ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method dispatch ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method forward ] { + + - Parameters [1] { + Parameter #0 [ <required> $forward ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher> public method wasForwarded ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher> public method getHandlerClass ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Annotations\Reader implements Phalcon\Annotations\ReaderInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ <internal:phalcon, prototype Phalcon\Annotations\ReaderInterface> static public method parseDocBlock ] { + + - Parameters [3] { + Parameter #0 [ <required> $docBlock ] + Parameter #1 [ <optional> $file ] + Parameter #2 [ <optional> $line ] + } + } + } + + - Properties [0] { + } + + - Methods [1] { + Method [ <internal:phalcon, prototype Phalcon\Annotations\ReaderInterface> public method parse ] { + + - Parameters [1] { + Parameter #0 [ <required> $className ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Annotations\Annotation ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [3] { + Property [ <default> protected $_name ] + Property [ <default> protected $_arguments ] + Property [ <default> protected $_exprArguments ] + } + + - Methods [11] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $reflectionData ] + } + } + + Method [ <internal:phalcon> public method getName ] { + } + + Method [ <internal:phalcon> public method getExpression ] { + + - Parameters [1] { + Parameter #0 [ <required> $expr ] + } + } + + Method [ <internal:phalcon> public method getExprArguments ] { + } + + Method [ <internal:phalcon> public method getArguments ] { + } + + Method [ <internal:phalcon> public method numberArguments ] { + } + + Method [ <internal:phalcon> public method getArgument ] { + + - Parameters [1] { + Parameter #0 [ <required> $position ] + } + } + + Method [ <internal:phalcon> public method hasArgument ] { + + - Parameters [1] { + Parameter #0 [ <required> $position ] + } + } + + Method [ <internal:phalcon> public method getNamedArgument ] { + + - Parameters [1] { + Parameter #0 [ <required> $position ] + } + } + + Method [ <internal, deprecated:phalcon> public method getNamedParameter ] { + + - Parameters [1] { + Parameter #0 [ <required> $position ] + } + } + + Method [ <internal:phalcon> public method hasNamedArgument ] { + + - Parameters [1] { + Parameter #0 [ <required> $position ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Annotations\Adapter\Apc extends Phalcon\Annotations\Adapter implements Phalcon\Annotations\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_reader ] + Property [ <default> protected $_annotations ] + } + + - Methods [9] { + Method [ <internal:phalcon, overwrites Phalcon\Annotations\AdapterInterface, prototype Phalcon\Annotations\AdapterInterface> public method read ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Annotations\AdapterInterface, prototype Phalcon\Annotations\AdapterInterface> public method write ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $data ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method setReader ] { + + - Parameters [1] { + Parameter #0 [ <required> $reader ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method getReader ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method get ] { + + - Parameters [1] { + Parameter #0 [ <required> $className ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method getMethods ] { + + - Parameters [1] { + Parameter #0 [ <required> $className ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method getMethod ] { + + - Parameters [2] { + Parameter #0 [ <required> $className ] + Parameter #1 [ <required> $methodName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method getProperties ] { + + - Parameters [1] { + Parameter #0 [ <required> $className ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method getProperty ] { + + - Parameters [2] { + Parameter #0 [ <required> $className ] + Parameter #1 [ <required> $propertyName ] + } + } + } + } + + Class [ <internal:phalcon> <iterateable> class Phalcon\Annotations\Collection implements Iterator, Traversable, Countable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_position ] + Property [ <default> protected $_annotations ] + } + + - Methods [11] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $reflectionData ] + } + } + + Method [ <internal:phalcon, prototype Countable> public method count ] { + } + + Method [ <internal:phalcon, prototype Iterator> public method rewind ] { + } + + Method [ <internal:phalcon, prototype Iterator> public method current ] { + } + + Method [ <internal:phalcon, prototype Iterator> public method key ] { + } + + Method [ <internal:phalcon, prototype Iterator> public method next ] { + } + + Method [ <internal:phalcon, prototype Iterator> public method valid ] { + } + + Method [ <internal:phalcon> public method getAnnotations ] { + } + + Method [ <internal:phalcon> public method get ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> public method getAll ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> public method has ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Annotations\Reflection ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ <internal:phalcon> static public method __set_state ] { + + - Parameters [1] { + Parameter #0 [ <required> $data ] + } + } + } + + - Properties [4] { + Property [ <default> protected $_reflectionData ] + Property [ <default> protected $_classAnnotations ] + Property [ <default> protected $_methodAnnotations ] + Property [ <default> protected $_propertyAnnotations ] + } + + - Methods [5] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $reflectionData ] + } + } + + Method [ <internal:phalcon> public method getClassAnnotations ] { + } + + Method [ <internal:phalcon> public method getMethodsAnnotations ] { + } + + Method [ <internal:phalcon> public method getPropertiesAnnotations ] { + } + + Method [ <internal:phalcon> public method getReflectionData ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Annotations\Adapter\Xcache extends Phalcon\Annotations\Adapter implements Phalcon\Annotations\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_reader ] + Property [ <default> protected $_annotations ] + } + + - Methods [9] { + Method [ <internal:phalcon, overwrites Phalcon\Annotations\AdapterInterface, prototype Phalcon\Annotations\AdapterInterface> public method read ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Annotations\AdapterInterface, prototype Phalcon\Annotations\AdapterInterface> public method write ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $data ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method setReader ] { + + - Parameters [1] { + Parameter #0 [ <required> $reader ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method getReader ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method get ] { + + - Parameters [1] { + Parameter #0 [ <required> $className ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method getMethods ] { + + - Parameters [1] { + Parameter #0 [ <required> $className ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method getMethod ] { + + - Parameters [2] { + Parameter #0 [ <required> $className ] + Parameter #1 [ <required> $methodName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method getProperties ] { + + - Parameters [1] { + Parameter #0 [ <required> $className ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method getProperty ] { + + - Parameters [2] { + Parameter #0 [ <required> $className ] + Parameter #1 [ <required> $propertyName ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Annotations\Adapter\Files extends Phalcon\Annotations\Adapter implements Phalcon\Annotations\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [3] { + Property [ <default> protected $_reader ] + Property [ <default> protected $_annotations ] + Property [ <default> protected $_annotationsDir ] + } + + - Methods [10] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Annotations\AdapterInterface, prototype Phalcon\Annotations\AdapterInterface> public method read ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Annotations\AdapterInterface, prototype Phalcon\Annotations\AdapterInterface> public method write ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $data ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method setReader ] { + + - Parameters [1] { + Parameter #0 [ <required> $reader ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method getReader ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method get ] { + + - Parameters [1] { + Parameter #0 [ <required> $className ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method getMethods ] { + + - Parameters [1] { + Parameter #0 [ <required> $className ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method getMethod ] { + + - Parameters [2] { + Parameter #0 [ <required> $className ] + Parameter #1 [ <required> $methodName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method getProperties ] { + + - Parameters [1] { + Parameter #0 [ <required> $className ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method getProperty ] { + + - Parameters [2] { + Parameter #0 [ <required> $className ] + Parameter #1 [ <required> $propertyName ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Annotations\Adapter\Memory extends Phalcon\Annotations\Adapter implements Phalcon\Annotations\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [3] { + Property [ <default> protected $_reader ] + Property [ <default> protected $_annotations ] + Property [ <default> protected $_data ] + } + + - Methods [9] { + Method [ <internal:phalcon, overwrites Phalcon\Annotations\AdapterInterface, prototype Phalcon\Annotations\AdapterInterface> public method read ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Annotations\AdapterInterface, prototype Phalcon\Annotations\AdapterInterface> public method write ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $data ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method setReader ] { + + - Parameters [1] { + Parameter #0 [ <required> $reader ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method getReader ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method get ] { + + - Parameters [1] { + Parameter #0 [ <required> $className ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method getMethods ] { + + - Parameters [1] { + Parameter #0 [ <required> $className ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method getMethod ] { + + - Parameters [2] { + Parameter #0 [ <required> $className ] + Parameter #1 [ <required> $methodName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method getProperties ] { + + - Parameters [1] { + Parameter #0 [ <required> $className ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Annotations\Adapter, prototype Phalcon\Annotations\AdapterInterface> public method getProperty ] { + + - Parameters [2] { + Parameter #0 [ <required> $className ] + Parameter #1 [ <required> $propertyName ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Loader implements Phalcon\Events\EventsAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_foundPath ] + Property [ <default> protected $_checkedPath ] + Property [ <default> protected $_prefixes ] + Property [ <default> protected $_classes ] + Property [ <default> protected $_extensions ] + Property [ <default> protected $_namespaces ] + Property [ <default> protected $_directories ] + Property [ <default> protected $_registered ] + } + + - Methods [18] { + Method [ <internal:phalcon, ctor> public method __construct ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method setExtensions ] { + + - Parameters [1] { + Parameter #0 [ <required> $extensions ] + } + } + + Method [ <internal:phalcon> public method getExtensions ] { + } + + Method [ <internal:phalcon> public method registerNamespaces ] { + + - Parameters [2] { + Parameter #0 [ <required> $namespaces ] + Parameter #1 [ <optional> $merge ] + } + } + + Method [ <internal:phalcon> public method getNamespaces ] { + } + + Method [ <internal:phalcon> public method registerPrefixes ] { + + - Parameters [2] { + Parameter #0 [ <required> $prefixes ] + Parameter #1 [ <optional> $merge ] + } + } + + Method [ <internal:phalcon> public method getPrefixes ] { + } + + Method [ <internal:phalcon> public method registerDirs ] { + + - Parameters [2] { + Parameter #0 [ <required> $directories ] + Parameter #1 [ <optional> $merge ] + } + } + + Method [ <internal:phalcon> public method getDirs ] { + } + + Method [ <internal:phalcon> public method registerClasses ] { + + - Parameters [2] { + Parameter #0 [ <required> $classes ] + Parameter #1 [ <optional> $merge ] + } + } + + Method [ <internal:phalcon> public method getClasses ] { + } + + Method [ <internal:phalcon> public method register ] { + } + + Method [ <internal:phalcon> public method unregister ] { + } + + Method [ <internal:phalcon> public method autoLoad ] { + + - Parameters [1] { + Parameter #0 [ <required> $className ] + } + } + + Method [ <internal:phalcon> public method getFoundPath ] { + } + + Method [ <internal:phalcon> public method getCheckedPath ] { + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Logger ] { + + - Constants [11] { + Constant [ integer SPECIAL ] { 9 } + Constant [ integer CUSTOM ] { 8 } + Constant [ integer DEBUG ] { 7 } + Constant [ integer INFO ] { 6 } + Constant [ integer NOTICE ] { 5 } + Constant [ integer WARNING ] { 4 } + Constant [ integer ERROR ] { 3 } + Constant [ integer ALERT ] { 2 } + Constant [ integer CRITICAL ] { 1 } + Constant [ integer EMERGENCE ] { 0 } + Constant [ integer EMERGENCY ] { 0 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Class [ <internal:phalcon> class Phalcon\Logger\Item ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $_type ] + Property [ <default> protected $_message ] + Property [ <default> protected $_time ] + Property [ <default> protected $_context ] + } + + - Methods [5] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [3] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <required> $type ] + Parameter #2 [ <optional> $time ] + } + } + + Method [ <internal:phalcon> public method getMessage ] { + } + + Method [ <internal:phalcon> public method getType ] { + } + + Method [ <internal:phalcon> public method getTime ] { + } + + Method [ <internal:phalcon> public method getContext ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Logger\Multiple ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_loggers ] + Property [ <default> protected $_formatter ] + } + + - Methods [13] { + Method [ <internal:phalcon> public method push ] { + + - Parameters [1] { + Parameter #0 [ <required> $logger ] + } + } + + Method [ <internal:phalcon> public method getLoggers ] { + } + + Method [ <internal:phalcon> public method setFormatter ] { + + - Parameters [1] { + Parameter #0 [ <required> $formatter ] + } + } + + Method [ <internal:phalcon> public method getFormatter ] { + } + + Method [ <internal:phalcon> public method log ] { + + - Parameters [3] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $message ] + Parameter #2 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon> public method emergency ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal, deprecated:phalcon> public method emergence ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon> public method debug ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon> public method error ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon> public method info ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon> public method notice ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon> public method warning ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon> public method alert ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Logger\Formatter\Json extends Phalcon\Logger\Formatter implements Phalcon\Logger\FormatterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [3] { + Method [ <internal:phalcon, overwrites Phalcon\Logger\FormatterInterface, prototype Phalcon\Logger\FormatterInterface> public method format ] { + + - Parameters [4] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <required> $type ] + Parameter #2 [ <required> $timestamp ] + Parameter #3 [ <required> $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Formatter> public method getTypeString ] { + + - Parameters [1] { + Parameter #0 [ <required> $type ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Formatter> protected method interpolate ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <required> $context ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Logger\Formatter\Line extends Phalcon\Logger\Formatter implements Phalcon\Logger\FormatterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_dateFormat ] + Property [ <default> protected $_format ] + } + + - Methods [8] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <optional> $format ] + Parameter #1 [ <optional> $dateFormat ] + } + } + + Method [ <internal:phalcon> public method setFormat ] { + + - Parameters [1] { + Parameter #0 [ <required> $format ] + } + } + + Method [ <internal:phalcon> public method getFormat ] { + } + + Method [ <internal:phalcon> public method setDateFormat ] { + + - Parameters [1] { + Parameter #0 [ <required> $date ] + } + } + + Method [ <internal:phalcon> public method getDateFormat ] { + } + + Method [ <internal:phalcon, overwrites Phalcon\Logger\FormatterInterface, prototype Phalcon\Logger\FormatterInterface> public method format ] { + + - Parameters [4] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <required> $type ] + Parameter #2 [ <required> $timestamp ] + Parameter #3 [ <required> $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Formatter> public method getTypeString ] { + + - Parameters [1] { + Parameter #0 [ <required> $type ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Formatter> protected method interpolate ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <required> $context ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Logger\Formatter\Firephp extends Phalcon\Logger\Formatter implements Phalcon\Logger\FormatterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_showBacktrace ] + Property [ <default> protected $_enableLabels ] + } + + - Methods [7] { + Method [ <internal:phalcon, overwrites Phalcon\Logger\Formatter, prototype Phalcon\Logger\Formatter> public method getTypeString ] { + + - Parameters [1] { + Parameter #0 [ <required> $type ] + } + } + + Method [ <internal:phalcon> public method getShowBacktrace ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method setShowBacktrace ] { + + - Parameters [1] { + Parameter #0 [ <optional> $show ] + } + } + + Method [ <internal:phalcon> public method enableLabels ] { + + - Parameters [1] { + Parameter #0 [ <optional> $enable ] + } + } + + Method [ <internal:phalcon> public method labelsEnabled ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Logger\FormatterInterface, prototype Phalcon\Logger\FormatterInterface> public method format ] { + + - Parameters [4] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <required> $type ] + Parameter #2 [ <required> $timestamp ] + Parameter #3 [ <required> $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Formatter> protected method interpolate ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <required> $context ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Logger\Adapter\Stream extends Phalcon\Logger\Adapter implements Phalcon\Logger\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [5] { + Property [ <default> protected $_transaction ] + Property [ <default> protected $_queue ] + Property [ <default> protected $_formatter ] + Property [ <default> protected $_logLevel ] + Property [ <default> protected $_stream ] + } + + - Methods [21] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Logger\AdapterInterface, prototype Phalcon\Logger\AdapterInterface> public method getFormatter ] { + } + + Method [ <internal:phalcon, overwrites Phalcon\Logger\Adapter, prototype Phalcon\Logger\Adapter> protected method logInternal ] { + + - Parameters [4] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <required> $type ] + Parameter #2 [ <required> $time ] + Parameter #3 [ <required> $context ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Logger\AdapterInterface, prototype Phalcon\Logger\AdapterInterface> public method close ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method setLogLevel ] { + + - Parameters [1] { + Parameter #0 [ <required> $level ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method getLogLevel ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method setFormatter ] { + + - Parameters [1] { + Parameter #0 [ <required> $formatter ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter> public method isTransaction ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method begin ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method commit ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method rollback ] { + } + + Method [ <internal, deprecated:phalcon, inherits Phalcon\Logger\Adapter> public method emergence ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method log ] { + + - Parameters [3] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $message ] + Parameter #2 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method debug ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method info ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method notice ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method warning ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method error ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method critical ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method alert ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method emergency ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Logger\Adapter\Syslog extends Phalcon\Logger\Adapter implements Phalcon\Logger\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [5] { + Property [ <default> protected $_transaction ] + Property [ <default> protected $_queue ] + Property [ <default> protected $_formatter ] + Property [ <default> protected $_logLevel ] + Property [ <default> protected $_opened ] + } + + - Methods [21] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Logger\AdapterInterface, prototype Phalcon\Logger\AdapterInterface> public method getFormatter ] { + } + + Method [ <internal:phalcon, overwrites Phalcon\Logger\Adapter, prototype Phalcon\Logger\Adapter> protected method logInternal ] { + + - Parameters [4] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <required> $type ] + Parameter #2 [ <required> $time ] + Parameter #3 [ <required> $context ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Logger\AdapterInterface, prototype Phalcon\Logger\AdapterInterface> public method close ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method setLogLevel ] { + + - Parameters [1] { + Parameter #0 [ <required> $level ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method getLogLevel ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method setFormatter ] { + + - Parameters [1] { + Parameter #0 [ <required> $formatter ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter> public method isTransaction ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method begin ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method commit ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method rollback ] { + } + + Method [ <internal, deprecated:phalcon, inherits Phalcon\Logger\Adapter> public method emergence ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method log ] { + + - Parameters [3] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $message ] + Parameter #2 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method debug ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method info ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method notice ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method warning ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method error ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method critical ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method alert ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method emergency ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Logger\Adapter\File extends Phalcon\Logger\Adapter implements Phalcon\Logger\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [7] { + Property [ <default> protected $_transaction ] + Property [ <default> protected $_queue ] + Property [ <default> protected $_formatter ] + Property [ <default> protected $_logLevel ] + Property [ <default> protected $_fileHandler ] + Property [ <default> protected $_path ] + Property [ <default> protected $_options ] + } + + - Methods [23] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Logger\AdapterInterface, prototype Phalcon\Logger\AdapterInterface> public method getFormatter ] { + } + + Method [ <internal:phalcon, overwrites Phalcon\Logger\Adapter, prototype Phalcon\Logger\Adapter> protected method logInternal ] { + + - Parameters [4] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <required> $type ] + Parameter #2 [ <required> $time ] + Parameter #3 [ <required> $context ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Logger\AdapterInterface, prototype Phalcon\Logger\AdapterInterface> public method close ] { + } + + Method [ <internal:phalcon> public method getPath ] { + } + + Method [ <internal:phalcon> public method __wakeup ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method setLogLevel ] { + + - Parameters [1] { + Parameter #0 [ <required> $level ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method getLogLevel ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method setFormatter ] { + + - Parameters [1] { + Parameter #0 [ <required> $formatter ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter> public method isTransaction ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method begin ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method commit ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method rollback ] { + } + + Method [ <internal, deprecated:phalcon, inherits Phalcon\Logger\Adapter> public method emergence ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method log ] { + + - Parameters [3] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $message ] + Parameter #2 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method debug ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method info ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method notice ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method warning ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method error ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method critical ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method alert ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method emergency ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Logger\Adapter\Firephp extends Phalcon\Logger\Adapter implements Phalcon\Logger\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [2] { + Property [ private static $_initialized ] + Property [ private static $_index ] + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $_transaction ] + Property [ <default> protected $_queue ] + Property [ <default> protected $_formatter ] + Property [ <default> protected $_logLevel ] + } + + - Methods [20] { + Method [ <internal:phalcon, overwrites Phalcon\Logger\AdapterInterface, prototype Phalcon\Logger\AdapterInterface> public method getFormatter ] { + } + + Method [ <internal:phalcon, overwrites Phalcon\Logger\Adapter, prototype Phalcon\Logger\Adapter> protected method logInternal ] { + + - Parameters [4] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <required> $type ] + Parameter #2 [ <required> $time ] + Parameter #3 [ <required> $context ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Logger\AdapterInterface, prototype Phalcon\Logger\AdapterInterface> public method close ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method setLogLevel ] { + + - Parameters [1] { + Parameter #0 [ <required> $level ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method getLogLevel ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method setFormatter ] { + + - Parameters [1] { + Parameter #0 [ <required> $formatter ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter> public method isTransaction ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method begin ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method commit ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method rollback ] { + } + + Method [ <internal, deprecated:phalcon, inherits Phalcon\Logger\Adapter> public method emergence ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method log ] { + + - Parameters [3] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $message ] + Parameter #2 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method debug ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method info ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method notice ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method warning ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method error ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method critical ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method alert ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Adapter, prototype Phalcon\Logger\AdapterInterface> public method emergency ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> array or NULL $context ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Logger\Formatter\Syslog extends Phalcon\Logger\Formatter implements Phalcon\Logger\FormatterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [3] { + Method [ <internal:phalcon, overwrites Phalcon\Logger\FormatterInterface, prototype Phalcon\Logger\FormatterInterface> public method format ] { + + - Parameters [4] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <required> $type ] + Parameter #2 [ <required> $timestamp ] + Parameter #3 [ <required> $context ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Formatter> public method getTypeString ] { + + - Parameters [1] { + Parameter #0 [ <required> $type ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Logger\Formatter> protected method interpolate ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <required> $context ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Config\Adapter\Ini extends Phalcon\Config implements Countable, ArrayAccess ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ <internal:phalcon, inherits Phalcon\Config> static public method __set_state ] { + + - Parameters [1] { + Parameter #0 [ <optional> array $properties ] + } + } + } + + - Properties [0] { + } + + - Methods [14] { + Method [ <internal:phalcon, overwrites Phalcon\Config, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $filePath ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $index ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config, prototype ArrayAccess> public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method merge ] { + + - Parameters [1] { + Parameter #0 [ <required> $config ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method toArray ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config, prototype Countable> public method count ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method __wakeup ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method __get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method __set ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method __isset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method __unset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Config\Adapter\Json extends Phalcon\Config implements Countable, ArrayAccess ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ <internal:phalcon, inherits Phalcon\Config> static public method __set_state ] { + + - Parameters [1] { + Parameter #0 [ <optional> array $properties ] + } + } + } + + - Properties [0] { + } + + - Methods [14] { + Method [ <internal:phalcon, overwrites Phalcon\Config, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $filePath ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $index ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config, prototype ArrayAccess> public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method merge ] { + + - Parameters [1] { + Parameter #0 [ <required> $config ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method toArray ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config, prototype Countable> public method count ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method __wakeup ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method __get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method __set ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method __isset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method __unset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Config\Adapter\Php extends Phalcon\Config implements Countable, ArrayAccess ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ <internal:phalcon, inherits Phalcon\Config> static public method __set_state ] { + + - Parameters [1] { + Parameter #0 [ <optional> array $properties ] + } + } + } + + - Properties [0] { + } + + - Methods [14] { + Method [ <internal:phalcon, overwrites Phalcon\Config, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $filePath ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $index ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config, prototype ArrayAccess> public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method merge ] { + + - Parameters [1] { + Parameter #0 [ <required> $config ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method toArray ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config, prototype Countable> public method count ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method __wakeup ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method __get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method __set ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method __isset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method __unset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Config\Adapter\Yaml extends Phalcon\Config implements Countable, ArrayAccess ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ <internal:phalcon, inherits Phalcon\Config> static public method __set_state ] { + + - Parameters [1] { + Parameter #0 [ <optional> array $properties ] + } + } + } + + - Properties [0] { + } + + - Methods [14] { + Method [ <internal:phalcon, overwrites Phalcon\Config, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $filePath ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $index ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config, prototype ArrayAccess> public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method merge ] { + + - Parameters [1] { + Parameter #0 [ <required> $config ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method toArray ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config, prototype Countable> public method count ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method __wakeup ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method __get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method __set ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method __isset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Config> public method __unset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + } + } + + Class [ <internal:phalcon> <iterateable> class Phalcon\Forms\Form extends Phalcon\DI\Injectable implements Phalcon\Events\EventsAwareInterface, Phalcon\DI\InjectionAwareInterface, Countable, Iterator, Traversable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [10] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_position ] + Property [ <default> protected $_entity ] + Property [ <default> protected $_options ] + Property [ <default> protected $_data ] + Property [ <default> protected $_elements ] + Property [ <default> protected $_elementsIndexed ] + Property [ <default> protected $_messages ] + Property [ <default> protected $_action ] + } + + - Methods [35] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <optional> $entity ] + Parameter #1 [ <optional> $userOptions ] + } + } + + Method [ <internal:phalcon> public method setAction ] { + + - Parameters [1] { + Parameter #0 [ <required> $action ] + } + } + + Method [ <internal:phalcon> public method getAction ] { + } + + Method [ <internal:phalcon> public method setUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> public method getUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon> public method setUserOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon> public method getUserOptions ] { + } + + Method [ <internal:phalcon> public method setEntity ] { + + - Parameters [1] { + Parameter #0 [ <required> $entity ] + } + } + + Method [ <internal:phalcon> public method getEntity ] { + } + + Method [ <internal:phalcon> public method getElements ] { + } + + Method [ <internal:phalcon> public method bind ] { + + - Parameters [3] { + Parameter #0 [ <required> $data ] + Parameter #1 [ <required> $entity ] + Parameter #2 [ <optional> $whitelist ] + } + } + + Method [ <internal:phalcon> public method isValid ] { + + - Parameters [2] { + Parameter #0 [ <optional> $data ] + Parameter #1 [ <optional> $entity ] + } + } + + Method [ <internal:phalcon> public method getMessages ] { + + - Parameters [1] { + Parameter #0 [ <optional> $byItemName ] + } + } + + Method [ <internal:phalcon> public method getMessagesFor ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> public method hasMessagesFor ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> public method add ] { + + - Parameters [3] { + Parameter #0 [ <required> $element ] + Parameter #1 [ <optional> $postion ] + Parameter #2 [ <optional> $type ] + } + } + + Method [ <internal:phalcon> public method render ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon> public method get ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> public method label ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon> public method getLabel ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> public method getValue ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> public method has ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> public method remove ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> public method clear ] { + + - Parameters [1] { + Parameter #0 [ <optional> $fields ] + } + } + + Method [ <internal:phalcon, prototype Countable> public method count ] { + } + + Method [ <internal:phalcon, prototype Iterator> public method rewind ] { + } + + Method [ <internal:phalcon, prototype Iterator> public method current ] { + } + + Method [ <internal:phalcon, prototype Iterator> public method key ] { + } + + Method [ <internal:phalcon, prototype Iterator> public method next ] { + } + + Method [ <internal:phalcon, prototype Iterator> public method valid ] { + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable> public method __get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Forms\Manager ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_forms ] + } + + - Methods [5] { + Method [ <internal:phalcon, ctor> public method __construct ] { + } + + Method [ <internal:phalcon> public method create ] { + + - Parameters [2] { + Parameter #0 [ <optional> $name ] + Parameter #1 [ <optional> $entity ] + } + } + + Method [ <internal:phalcon> public method get ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> public method has ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> public method set ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <required> $form ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Forms\Element\Text extends Phalcon\Forms\Element implements Phalcon\Forms\ElementInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ <default> protected $_form ] + Property [ <default> protected $_name ] + Property [ <default> protected $_value ] + Property [ <default> protected $_label ] + Property [ <default> protected $_attributes ] + Property [ <default> protected $_validators ] + Property [ <default> protected $_filters ] + Property [ <default> protected $_options ] + Property [ <default> protected $_messages ] + } + + - Methods [33] { + Method [ <internal:phalcon, overwrites Phalcon\Forms\ElementInterface, prototype Phalcon\Forms\ElementInterface> public method render ] { + + - Parameters [1] { + Parameter #0 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setForm ] { + + - Parameters [1] { + Parameter #0 [ <required> $form ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getForm ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setName ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setFilters ] { + + - Parameters [1] { + Parameter #0 [ <required> $filters ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addFilter ] { + + - Parameters [1] { + Parameter #0 [ <required> $filter ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getFilters ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidators ] { + + - Parameters [2] { + Parameter #0 [ <required> $validators ] + Parameter #1 [ <optional> $merge ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidator ] { + + - Parameters [1] { + Parameter #0 [ <required> $validator ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValidators ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method prepareAttributes ] { + + - Parameters [2] { + Parameter #0 [ <optional> $attributes ] + Parameter #1 [ <optional> $useChecked ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttributes ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOptions ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setLabel ] { + + - Parameters [1] { + Parameter #0 [ <required> $label ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getLabel ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method label ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setDefault ] { + + - Parameters [1] { + Parameter #0 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getDefault ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValue ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method hasMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setMessages ] { + + - Parameters [1] { + Parameter #0 [ <required> $group ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method appendMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method clear ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Forms\Element\Date extends Phalcon\Forms\Element implements Phalcon\Forms\ElementInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ <default> protected $_form ] + Property [ <default> protected $_name ] + Property [ <default> protected $_value ] + Property [ <default> protected $_label ] + Property [ <default> protected $_attributes ] + Property [ <default> protected $_validators ] + Property [ <default> protected $_filters ] + Property [ <default> protected $_options ] + Property [ <default> protected $_messages ] + } + + - Methods [33] { + Method [ <internal:phalcon, overwrites Phalcon\Forms\ElementInterface, prototype Phalcon\Forms\ElementInterface> public method render ] { + + - Parameters [1] { + Parameter #0 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setForm ] { + + - Parameters [1] { + Parameter #0 [ <required> $form ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getForm ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setName ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setFilters ] { + + - Parameters [1] { + Parameter #0 [ <required> $filters ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addFilter ] { + + - Parameters [1] { + Parameter #0 [ <required> $filter ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getFilters ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidators ] { + + - Parameters [2] { + Parameter #0 [ <required> $validators ] + Parameter #1 [ <optional> $merge ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidator ] { + + - Parameters [1] { + Parameter #0 [ <required> $validator ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValidators ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method prepareAttributes ] { + + - Parameters [2] { + Parameter #0 [ <optional> $attributes ] + Parameter #1 [ <optional> $useChecked ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttributes ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOptions ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setLabel ] { + + - Parameters [1] { + Parameter #0 [ <required> $label ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getLabel ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method label ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setDefault ] { + + - Parameters [1] { + Parameter #0 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getDefault ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValue ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method hasMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setMessages ] { + + - Parameters [1] { + Parameter #0 [ <required> $group ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method appendMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method clear ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Forms\Element\File extends Phalcon\Forms\Element implements Phalcon\Forms\ElementInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ <default> protected $_form ] + Property [ <default> protected $_name ] + Property [ <default> protected $_value ] + Property [ <default> protected $_label ] + Property [ <default> protected $_attributes ] + Property [ <default> protected $_validators ] + Property [ <default> protected $_filters ] + Property [ <default> protected $_options ] + Property [ <default> protected $_messages ] + } + + - Methods [33] { + Method [ <internal:phalcon, overwrites Phalcon\Forms\ElementInterface, prototype Phalcon\Forms\ElementInterface> public method render ] { + + - Parameters [1] { + Parameter #0 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setForm ] { + + - Parameters [1] { + Parameter #0 [ <required> $form ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getForm ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setName ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setFilters ] { + + - Parameters [1] { + Parameter #0 [ <required> $filters ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addFilter ] { + + - Parameters [1] { + Parameter #0 [ <required> $filter ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getFilters ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidators ] { + + - Parameters [2] { + Parameter #0 [ <required> $validators ] + Parameter #1 [ <optional> $merge ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidator ] { + + - Parameters [1] { + Parameter #0 [ <required> $validator ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValidators ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method prepareAttributes ] { + + - Parameters [2] { + Parameter #0 [ <optional> $attributes ] + Parameter #1 [ <optional> $useChecked ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttributes ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOptions ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setLabel ] { + + - Parameters [1] { + Parameter #0 [ <required> $label ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getLabel ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method label ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setDefault ] { + + - Parameters [1] { + Parameter #0 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getDefault ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValue ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method hasMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setMessages ] { + + - Parameters [1] { + Parameter #0 [ <required> $group ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method appendMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method clear ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Forms\Element\Hidden extends Phalcon\Forms\Element implements Phalcon\Forms\ElementInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ <default> protected $_form ] + Property [ <default> protected $_name ] + Property [ <default> protected $_value ] + Property [ <default> protected $_label ] + Property [ <default> protected $_attributes ] + Property [ <default> protected $_validators ] + Property [ <default> protected $_filters ] + Property [ <default> protected $_options ] + Property [ <default> protected $_messages ] + } + + - Methods [33] { + Method [ <internal:phalcon, overwrites Phalcon\Forms\ElementInterface, prototype Phalcon\Forms\ElementInterface> public method render ] { + + - Parameters [1] { + Parameter #0 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setForm ] { + + - Parameters [1] { + Parameter #0 [ <required> $form ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getForm ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setName ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setFilters ] { + + - Parameters [1] { + Parameter #0 [ <required> $filters ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addFilter ] { + + - Parameters [1] { + Parameter #0 [ <required> $filter ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getFilters ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidators ] { + + - Parameters [2] { + Parameter #0 [ <required> $validators ] + Parameter #1 [ <optional> $merge ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidator ] { + + - Parameters [1] { + Parameter #0 [ <required> $validator ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValidators ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method prepareAttributes ] { + + - Parameters [2] { + Parameter #0 [ <optional> $attributes ] + Parameter #1 [ <optional> $useChecked ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttributes ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOptions ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setLabel ] { + + - Parameters [1] { + Parameter #0 [ <required> $label ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getLabel ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method label ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setDefault ] { + + - Parameters [1] { + Parameter #0 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getDefault ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValue ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method hasMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setMessages ] { + + - Parameters [1] { + Parameter #0 [ <required> $group ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method appendMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method clear ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Forms\Element\Select extends Phalcon\Forms\Element implements Phalcon\Forms\ElementInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [10] { + Property [ <default> protected $_form ] + Property [ <default> protected $_name ] + Property [ <default> protected $_value ] + Property [ <default> protected $_label ] + Property [ <default> protected $_attributes ] + Property [ <default> protected $_validators ] + Property [ <default> protected $_filters ] + Property [ <default> protected $_options ] + Property [ <default> protected $_messages ] + Property [ <default> protected $_optionsValues ] + } + + - Methods [36] { + Method [ <internal:phalcon, overwrites Phalcon\Forms\Element, ctor> public method __construct ] { + + - Parameters [3] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $options ] + Parameter #2 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon> public method setOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon> public method getOptions ] { + } + + Method [ <internal:phalcon> public method addOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $option ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Forms\ElementInterface, prototype Phalcon\Forms\ElementInterface> public method render ] { + + - Parameters [1] { + Parameter #0 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setForm ] { + + - Parameters [1] { + Parameter #0 [ <required> $form ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getForm ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setName ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setFilters ] { + + - Parameters [1] { + Parameter #0 [ <required> $filters ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addFilter ] { + + - Parameters [1] { + Parameter #0 [ <required> $filter ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getFilters ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidators ] { + + - Parameters [2] { + Parameter #0 [ <required> $validators ] + Parameter #1 [ <optional> $merge ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidator ] { + + - Parameters [1] { + Parameter #0 [ <required> $validator ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValidators ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method prepareAttributes ] { + + - Parameters [2] { + Parameter #0 [ <optional> $attributes ] + Parameter #1 [ <optional> $useChecked ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttributes ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOptions ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setLabel ] { + + - Parameters [1] { + Parameter #0 [ <required> $label ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getLabel ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method label ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setDefault ] { + + - Parameters [1] { + Parameter #0 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getDefault ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValue ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method hasMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setMessages ] { + + - Parameters [1] { + Parameter #0 [ <required> $group ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method appendMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method clear ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Forms\Element\Check extends Phalcon\Forms\Element implements Phalcon\Forms\ElementInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ <default> protected $_form ] + Property [ <default> protected $_name ] + Property [ <default> protected $_value ] + Property [ <default> protected $_label ] + Property [ <default> protected $_attributes ] + Property [ <default> protected $_validators ] + Property [ <default> protected $_filters ] + Property [ <default> protected $_options ] + Property [ <default> protected $_messages ] + } + + - Methods [33] { + Method [ <internal:phalcon, overwrites Phalcon\Forms\ElementInterface, prototype Phalcon\Forms\ElementInterface> public method render ] { + + - Parameters [1] { + Parameter #0 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setForm ] { + + - Parameters [1] { + Parameter #0 [ <required> $form ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getForm ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setName ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setFilters ] { + + - Parameters [1] { + Parameter #0 [ <required> $filters ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addFilter ] { + + - Parameters [1] { + Parameter #0 [ <required> $filter ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getFilters ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidators ] { + + - Parameters [2] { + Parameter #0 [ <required> $validators ] + Parameter #1 [ <optional> $merge ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidator ] { + + - Parameters [1] { + Parameter #0 [ <required> $validator ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValidators ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method prepareAttributes ] { + + - Parameters [2] { + Parameter #0 [ <optional> $attributes ] + Parameter #1 [ <optional> $useChecked ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttributes ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOptions ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setLabel ] { + + - Parameters [1] { + Parameter #0 [ <required> $label ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getLabel ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method label ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setDefault ] { + + - Parameters [1] { + Parameter #0 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getDefault ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValue ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method hasMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setMessages ] { + + - Parameters [1] { + Parameter #0 [ <required> $group ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method appendMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method clear ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Forms\Element\Numeric extends Phalcon\Forms\Element implements Phalcon\Forms\ElementInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ <default> protected $_form ] + Property [ <default> protected $_name ] + Property [ <default> protected $_value ] + Property [ <default> protected $_label ] + Property [ <default> protected $_attributes ] + Property [ <default> protected $_validators ] + Property [ <default> protected $_filters ] + Property [ <default> protected $_options ] + Property [ <default> protected $_messages ] + } + + - Methods [33] { + Method [ <internal:phalcon, overwrites Phalcon\Forms\ElementInterface, prototype Phalcon\Forms\ElementInterface> public method render ] { + + - Parameters [1] { + Parameter #0 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setForm ] { + + - Parameters [1] { + Parameter #0 [ <required> $form ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getForm ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setName ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setFilters ] { + + - Parameters [1] { + Parameter #0 [ <required> $filters ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addFilter ] { + + - Parameters [1] { + Parameter #0 [ <required> $filter ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getFilters ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidators ] { + + - Parameters [2] { + Parameter #0 [ <required> $validators ] + Parameter #1 [ <optional> $merge ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidator ] { + + - Parameters [1] { + Parameter #0 [ <required> $validator ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValidators ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method prepareAttributes ] { + + - Parameters [2] { + Parameter #0 [ <optional> $attributes ] + Parameter #1 [ <optional> $useChecked ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttributes ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOptions ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setLabel ] { + + - Parameters [1] { + Parameter #0 [ <required> $label ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getLabel ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method label ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setDefault ] { + + - Parameters [1] { + Parameter #0 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getDefault ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValue ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method hasMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setMessages ] { + + - Parameters [1] { + Parameter #0 [ <required> $group ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method appendMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method clear ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Forms\Element\Email extends Phalcon\Forms\Element implements Phalcon\Forms\ElementInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ <default> protected $_form ] + Property [ <default> protected $_name ] + Property [ <default> protected $_value ] + Property [ <default> protected $_label ] + Property [ <default> protected $_attributes ] + Property [ <default> protected $_validators ] + Property [ <default> protected $_filters ] + Property [ <default> protected $_options ] + Property [ <default> protected $_messages ] + } + + - Methods [33] { + Method [ <internal:phalcon, overwrites Phalcon\Forms\ElementInterface, prototype Phalcon\Forms\ElementInterface> public method render ] { + + - Parameters [1] { + Parameter #0 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setForm ] { + + - Parameters [1] { + Parameter #0 [ <required> $form ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getForm ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setName ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setFilters ] { + + - Parameters [1] { + Parameter #0 [ <required> $filters ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addFilter ] { + + - Parameters [1] { + Parameter #0 [ <required> $filter ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getFilters ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidators ] { + + - Parameters [2] { + Parameter #0 [ <required> $validators ] + Parameter #1 [ <optional> $merge ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidator ] { + + - Parameters [1] { + Parameter #0 [ <required> $validator ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValidators ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method prepareAttributes ] { + + - Parameters [2] { + Parameter #0 [ <optional> $attributes ] + Parameter #1 [ <optional> $useChecked ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttributes ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOptions ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setLabel ] { + + - Parameters [1] { + Parameter #0 [ <required> $label ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getLabel ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method label ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setDefault ] { + + - Parameters [1] { + Parameter #0 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getDefault ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValue ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method hasMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setMessages ] { + + - Parameters [1] { + Parameter #0 [ <required> $group ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method appendMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method clear ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Forms\Element\Submit extends Phalcon\Forms\Element implements Phalcon\Forms\ElementInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ <default> protected $_form ] + Property [ <default> protected $_name ] + Property [ <default> protected $_value ] + Property [ <default> protected $_label ] + Property [ <default> protected $_attributes ] + Property [ <default> protected $_validators ] + Property [ <default> protected $_filters ] + Property [ <default> protected $_options ] + Property [ <default> protected $_messages ] + } + + - Methods [33] { + Method [ <internal:phalcon, overwrites Phalcon\Forms\ElementInterface, prototype Phalcon\Forms\ElementInterface> public method render ] { + + - Parameters [1] { + Parameter #0 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setForm ] { + + - Parameters [1] { + Parameter #0 [ <required> $form ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getForm ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setName ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setFilters ] { + + - Parameters [1] { + Parameter #0 [ <required> $filters ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addFilter ] { + + - Parameters [1] { + Parameter #0 [ <required> $filter ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getFilters ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidators ] { + + - Parameters [2] { + Parameter #0 [ <required> $validators ] + Parameter #1 [ <optional> $merge ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidator ] { + + - Parameters [1] { + Parameter #0 [ <required> $validator ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValidators ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method prepareAttributes ] { + + - Parameters [2] { + Parameter #0 [ <optional> $attributes ] + Parameter #1 [ <optional> $useChecked ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttributes ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOptions ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setLabel ] { + + - Parameters [1] { + Parameter #0 [ <required> $label ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getLabel ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method label ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setDefault ] { + + - Parameters [1] { + Parameter #0 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getDefault ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValue ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method hasMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setMessages ] { + + - Parameters [1] { + Parameter #0 [ <required> $group ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method appendMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method clear ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Forms\Element\Password extends Phalcon\Forms\Element implements Phalcon\Forms\ElementInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ <default> protected $_form ] + Property [ <default> protected $_name ] + Property [ <default> protected $_value ] + Property [ <default> protected $_label ] + Property [ <default> protected $_attributes ] + Property [ <default> protected $_validators ] + Property [ <default> protected $_filters ] + Property [ <default> protected $_options ] + Property [ <default> protected $_messages ] + } + + - Methods [33] { + Method [ <internal:phalcon, overwrites Phalcon\Forms\ElementInterface, prototype Phalcon\Forms\ElementInterface> public method render ] { + + - Parameters [1] { + Parameter #0 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setForm ] { + + - Parameters [1] { + Parameter #0 [ <required> $form ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getForm ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setName ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setFilters ] { + + - Parameters [1] { + Parameter #0 [ <required> $filters ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addFilter ] { + + - Parameters [1] { + Parameter #0 [ <required> $filter ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getFilters ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidators ] { + + - Parameters [2] { + Parameter #0 [ <required> $validators ] + Parameter #1 [ <optional> $merge ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidator ] { + + - Parameters [1] { + Parameter #0 [ <required> $validator ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValidators ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method prepareAttributes ] { + + - Parameters [2] { + Parameter #0 [ <optional> $attributes ] + Parameter #1 [ <optional> $useChecked ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttributes ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOptions ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setLabel ] { + + - Parameters [1] { + Parameter #0 [ <required> $label ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getLabel ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method label ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setDefault ] { + + - Parameters [1] { + Parameter #0 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getDefault ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValue ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method hasMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setMessages ] { + + - Parameters [1] { + Parameter #0 [ <required> $group ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method appendMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method clear ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Forms\Element\TextArea extends Phalcon\Forms\Element implements Phalcon\Forms\ElementInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ <default> protected $_form ] + Property [ <default> protected $_name ] + Property [ <default> protected $_value ] + Property [ <default> protected $_label ] + Property [ <default> protected $_attributes ] + Property [ <default> protected $_validators ] + Property [ <default> protected $_filters ] + Property [ <default> protected $_options ] + Property [ <default> protected $_messages ] + } + + - Methods [33] { + Method [ <internal:phalcon, overwrites Phalcon\Forms\ElementInterface, prototype Phalcon\Forms\ElementInterface> public method render ] { + + - Parameters [1] { + Parameter #0 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setForm ] { + + - Parameters [1] { + Parameter #0 [ <required> $form ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getForm ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setName ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setFilters ] { + + - Parameters [1] { + Parameter #0 [ <required> $filters ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addFilter ] { + + - Parameters [1] { + Parameter #0 [ <required> $filter ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getFilters ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidators ] { + + - Parameters [2] { + Parameter #0 [ <required> $validators ] + Parameter #1 [ <optional> $merge ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidator ] { + + - Parameters [1] { + Parameter #0 [ <required> $validator ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValidators ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method prepareAttributes ] { + + - Parameters [2] { + Parameter #0 [ <optional> $attributes ] + Parameter #1 [ <optional> $useChecked ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttributes ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOptions ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setLabel ] { + + - Parameters [1] { + Parameter #0 [ <required> $label ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getLabel ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method label ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setDefault ] { + + - Parameters [1] { + Parameter #0 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getDefault ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValue ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method hasMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setMessages ] { + + - Parameters [1] { + Parameter #0 [ <required> $group ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method appendMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method clear ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Forms\Element\Radio extends Phalcon\Forms\Element implements Phalcon\Forms\ElementInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ <default> protected $_form ] + Property [ <default> protected $_name ] + Property [ <default> protected $_value ] + Property [ <default> protected $_label ] + Property [ <default> protected $_attributes ] + Property [ <default> protected $_validators ] + Property [ <default> protected $_filters ] + Property [ <default> protected $_options ] + Property [ <default> protected $_messages ] + } + + - Methods [33] { + Method [ <internal:phalcon, overwrites Phalcon\Forms\ElementInterface, prototype Phalcon\Forms\ElementInterface> public method render ] { + + - Parameters [1] { + Parameter #0 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setForm ] { + + - Parameters [1] { + Parameter #0 [ <required> $form ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getForm ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setName ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setFilters ] { + + - Parameters [1] { + Parameter #0 [ <required> $filters ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addFilter ] { + + - Parameters [1] { + Parameter #0 [ <required> $filter ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getFilters ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidators ] { + + - Parameters [2] { + Parameter #0 [ <required> $validators ] + Parameter #1 [ <optional> $merge ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method addValidator ] { + + - Parameters [1] { + Parameter #0 [ <required> $validator ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValidators ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method prepareAttributes ] { + + - Parameters [2] { + Parameter #0 [ <optional> $attributes ] + Parameter #1 [ <optional> $useChecked ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getAttributes ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setUserOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getUserOptions ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setLabel ] { + + - Parameters [1] { + Parameter #0 [ <required> $label ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getLabel ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method label ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setDefault ] { + + - Parameters [1] { + Parameter #0 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getDefault ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getValue ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method getMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method hasMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method setMessages ] { + + - Parameters [1] { + Parameter #0 [ <required> $group ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method appendMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element, prototype Phalcon\Forms\ElementInterface> public method clear ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Forms\Element> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Crypt implements Phalcon\CryptInterface ] { + + - Constants [7] { + Constant [ integer PADDING_DEFAULT ] { 0 } + Constant [ integer PADDING_ANSI_X_923 ] { 1 } + Constant [ integer PADDING_PKCS7 ] { 2 } + Constant [ integer PADDING_ISO_10126 ] { 3 } + Constant [ integer PADDING_ISO_IEC_7816_4 ] { 4 } + Constant [ integer PADDING_ZERO ] { 5 } + Constant [ integer PADDING_SPACE ] { 6 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $_key ] + Property [ <default> protected $_mode ] + Property [ <default> protected $_cipher ] + Property [ <default> protected $_padding ] + } + + - Methods [14] { + Method [ <internal:phalcon, prototype Phalcon\CryptInterface> public method setCipher ] { + + - Parameters [1] { + Parameter #0 [ <required> $cipher ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\CryptInterface> public method getCipher ] { + } + + Method [ <internal:phalcon, prototype Phalcon\CryptInterface> public method setMode ] { + + - Parameters [1] { + Parameter #0 [ <required> $mode ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\CryptInterface> public method getMode ] { + } + + Method [ <internal:phalcon, prototype Phalcon\CryptInterface> public method setKey ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\CryptInterface> public method getKey ] { + } + + Method [ <internal:phalcon> public method setPadding ] { + + - Parameters [1] { + Parameter #0 [ <required> $scheme ] + } + } + + Method [ <internal:phalcon> public method getPadding ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\CryptInterface> public method encrypt ] { + + - Parameters [2] { + Parameter #0 [ <required> $text ] + Parameter #1 [ <optional> $key ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\CryptInterface> public method decrypt ] { + + - Parameters [2] { + Parameter #0 [ <required> $text ] + Parameter #1 [ <optional> $key ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\CryptInterface> public method encryptBase64 ] { + + - Parameters [3] { + Parameter #0 [ <required> $text ] + Parameter #1 [ <optional> $key ] + Parameter #2 [ <optional> $safe ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\CryptInterface> public method decryptBase64 ] { + + - Parameters [3] { + Parameter #0 [ <required> $text ] + Parameter #1 [ <optional> $key ] + Parameter #2 [ <optional> $safe ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\CryptInterface> public method getAvailableCiphers ] { + } + + Method [ <internal:phalcon, prototype Phalcon\CryptInterface> public method getAvailableModes ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Translate\Adapter\NativeArray extends Phalcon\Translate\Adapter implements Phalcon\Translate\AdapterInterface, ArrayAccess ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_translate ] + } + + - Methods [8] { + Method [ <internal:phalcon, overwrites Phalcon\Translate\Adapter, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Translate\AdapterInterface, prototype Phalcon\Translate\AdapterInterface> public method query ] { + + - Parameters [2] { + Parameter #0 [ <required> $index ] + Parameter #1 [ <optional> $placeholders ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Translate\AdapterInterface, prototype Phalcon\Translate\AdapterInterface> public method exists ] { + + - Parameters [1] { + Parameter #0 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Translate\Adapter> public method _ ] { + + - Parameters [2] { + Parameter #0 [ <required> $translateKey ] + Parameter #1 [ <optional> $placeholders ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Translate\Adapter, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Translate\Adapter, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Translate\Adapter, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Translate\Adapter, prototype ArrayAccess> public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Translate\Adapter\Gettext extends Phalcon\Translate\Adapter implements Phalcon\Translate\AdapterInterface, ArrayAccess ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [3] { + Property [ <default> protected $_locale ] + Property [ <default> protected $_defaultDomain ] + Property [ <default> protected $_directory ] + } + + - Methods [8] { + Method [ <internal:phalcon, overwrites Phalcon\Translate\Adapter, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Translate\AdapterInterface, prototype Phalcon\Translate\AdapterInterface> public method query ] { + + - Parameters [2] { + Parameter #0 [ <required> $index ] + Parameter #1 [ <optional> $placeholders ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Translate\AdapterInterface, prototype Phalcon\Translate\AdapterInterface> public method exists ] { + + - Parameters [1] { + Parameter #0 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Translate\Adapter> public method _ ] { + + - Parameters [2] { + Parameter #0 [ <required> $translateKey ] + Parameter #1 [ <optional> $placeholders ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Translate\Adapter, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Translate\Adapter, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Translate\Adapter, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Translate\Adapter, prototype ArrayAccess> public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Escaper implements Phalcon\EscaperInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [3] { + Property [ <default> protected $_encoding ] + Property [ <default> protected $_htmlEscapeMap ] + Property [ <default> protected $_htmlQuoteType ] + } + + - Methods [10] { + Method [ <internal:phalcon, prototype Phalcon\EscaperInterface> public method setEncoding ] { + + - Parameters [1] { + Parameter #0 [ <required> $encoding ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\EscaperInterface> public method getEncoding ] { + } + + Method [ <internal:phalcon, prototype Phalcon\EscaperInterface> public method setHtmlQuoteType ] { + + - Parameters [1] { + Parameter #0 [ <required> $quoteType ] + } + } + + Method [ <internal:phalcon> public method detectEncoding ] { + + - Parameters [1] { + Parameter #0 [ <required> $str ] + } + } + + Method [ <internal:phalcon> public method normalizeEncoding ] { + + - Parameters [1] { + Parameter #0 [ <required> $str ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\EscaperInterface> public method escapeHtml ] { + + - Parameters [1] { + Parameter #0 [ <required> $text ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\EscaperInterface> public method escapeHtmlAttr ] { + + - Parameters [1] { + Parameter #0 [ <required> $text ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\EscaperInterface> public method escapeCss ] { + + - Parameters [1] { + Parameter #0 [ <required> $css ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\EscaperInterface> public method escapeJs ] { + + - Parameters [1] { + Parameter #0 [ <required> $js ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\EscaperInterface> public method escapeUrl ] { + + - Parameters [1] { + Parameter #0 [ <required> $url ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Assets\Manager ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [3] { + Property [ <default> protected $_options ] + Property [ <default> protected $_collections ] + Property [ <default> protected $_implicitOutput ] + } + + - Methods [16] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon> public method setOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon> public method getOptions ] { + } + + Method [ <internal:phalcon> public method useImplicitOutput ] { + + - Parameters [1] { + Parameter #0 [ <required> $implicitOutput ] + } + } + + Method [ <internal:phalcon> public method addCss ] { + + - Parameters [4] { + Parameter #0 [ <required> $path ] + Parameter #1 [ <optional> $local ] + Parameter #2 [ <optional> $filter ] + Parameter #3 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon> public method addJs ] { + + - Parameters [4] { + Parameter #0 [ <required> $path ] + Parameter #1 [ <optional> $local ] + Parameter #2 [ <optional> $filter ] + Parameter #3 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon> public method addResourceByType ] { + + - Parameters [2] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $resource ] + } + } + + Method [ <internal:phalcon> public method addResource ] { + + - Parameters [1] { + Parameter #0 [ <required> $resource ] + } + } + + Method [ <internal:phalcon> public method set ] { + + - Parameters [2] { + Parameter #0 [ <required> $id ] + Parameter #1 [ <required> $collection ] + } + } + + Method [ <internal:phalcon> public method get ] { + + - Parameters [1] { + Parameter #0 [ <required> $id ] + } + } + + Method [ <internal:phalcon> public method getCss ] { + } + + Method [ <internal:phalcon> public method getJs ] { + } + + Method [ <internal:phalcon> public method collection ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> public method output ] { + + - Parameters [3] { + Parameter #0 [ <required> $collection ] + Parameter #1 [ <required> $callback ] + Parameter #2 [ <optional> $type ] + } + } + + Method [ <internal:phalcon> public method outputCss ] { + + - Parameters [1] { + Parameter #0 [ <optional> $collectionName ] + } + } + + Method [ <internal:phalcon> public method outputJs ] { + + - Parameters [1] { + Parameter #0 [ <optional> $collectionName ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Assets\Resource\Js extends Phalcon\Assets\Resource ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [8] { + Property [ <default> protected $_type ] + Property [ <default> protected $_path ] + Property [ <default> protected $_local ] + Property [ <default> protected $_filter ] + Property [ <default> protected $_attributes ] + Property [ <default> protected $_sourcePath ] + Property [ <default> protected $_targetPath ] + Property [ <default> protected $_targetUri ] + } + + - Methods [21] { + Method [ <internal:phalcon, overwrites Phalcon\Assets\Resource, ctor> public method __construct ] { + + - Parameters [4] { + Parameter #0 [ <required> $path ] + Parameter #1 [ <optional> $local ] + Parameter #2 [ <optional> $filter ] + Parameter #3 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method setType ] { + + - Parameters [1] { + Parameter #0 [ <required> $type ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getType ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method setPath ] { + + - Parameters [1] { + Parameter #0 [ <required> $path ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getPath ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method setLocal ] { + + - Parameters [1] { + Parameter #0 [ <required> $local ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getLocal ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method setFilter ] { + + - Parameters [1] { + Parameter #0 [ <required> $filter ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getFilter ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method setAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getAttributes ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method setTargetUri ] { + + - Parameters [1] { + Parameter #0 [ <required> $targetUri ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getTargetUri ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method setSourcePath ] { + + - Parameters [1] { + Parameter #0 [ <required> $sourcePath ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getSourcePath ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method setTargetPath ] { + + - Parameters [1] { + Parameter #0 [ <required> $targetPath ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getTargetPath ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getContent ] { + + - Parameters [1] { + Parameter #0 [ <optional> $basePath ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getRealTargetUri ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getRealSourcePath ] { + + - Parameters [1] { + Parameter #0 [ <optional> $basePath ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getRealTargetPath ] { + + - Parameters [1] { + Parameter #0 [ <optional> $basePath ] + } + } + } + } + + Class [ <internal:phalcon> <iterateable> class Phalcon\Assets\Collection implements Countable, Iterator, Traversable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [11] { + Property [ <default> protected $_prefix ] + Property [ <default> protected $_local ] + Property [ <default> protected $_resources ] + Property [ <default> protected $_position ] + Property [ <default> protected $_filters ] + Property [ <default> protected $_attributes ] + Property [ <default> protected $_join ] + Property [ <default> protected $_targetUri ] + Property [ <default> protected $_targetPath ] + Property [ <default> protected $_sourcePath ] + Property [ <default> protected $_targetLocal ] + } + + - Methods [30] { + Method [ <internal:phalcon> public method add ] { + + - Parameters [1] { + Parameter #0 [ <required> $resource ] + } + } + + Method [ <internal:phalcon> public method addCss ] { + + - Parameters [4] { + Parameter #0 [ <required> $path ] + Parameter #1 [ <optional> $local ] + Parameter #2 [ <optional> $filter ] + Parameter #3 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon> public method addJs ] { + + - Parameters [4] { + Parameter #0 [ <required> $path ] + Parameter #1 [ <optional> $local ] + Parameter #2 [ <optional> $filter ] + Parameter #3 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon> public method getResources ] { + } + + Method [ <internal:phalcon, prototype Countable> public method count ] { + } + + Method [ <internal:phalcon, prototype Iterator> public method rewind ] { + } + + Method [ <internal:phalcon, prototype Iterator> public method current ] { + } + + Method [ <internal:phalcon, prototype Iterator> public method key ] { + } + + Method [ <internal:phalcon, prototype Iterator> public method next ] { + } + + Method [ <internal:phalcon, prototype Iterator> public method valid ] { + } + + Method [ <internal:phalcon> public method setTargetPath ] { + + - Parameters [1] { + Parameter #0 [ <required> $targetPath ] + } + } + + Method [ <internal:phalcon> public method getTargetPath ] { + } + + Method [ <internal:phalcon> public method setSourcePath ] { + + - Parameters [1] { + Parameter #0 [ <required> $sourcePath ] + } + } + + Method [ <internal:phalcon> public method getSourcePath ] { + } + + Method [ <internal:phalcon> public method setTargetUri ] { + + - Parameters [1] { + Parameter #0 [ <required> $targetUri ] + } + } + + Method [ <internal:phalcon> public method getTargetUri ] { + } + + Method [ <internal:phalcon> public method setPrefix ] { + + - Parameters [1] { + Parameter #0 [ <required> $prefix ] + } + } + + Method [ <internal:phalcon> public method getPrefix ] { + } + + Method [ <internal:phalcon> public method setLocal ] { + + - Parameters [1] { + Parameter #0 [ <required> $local ] + } + } + + Method [ <internal:phalcon> public method getLocal ] { + } + + Method [ <internal:phalcon> public method setAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon> public method getAttributes ] { + } + + Method [ <internal:phalcon> public method addFilter ] { + + - Parameters [1] { + Parameter #0 [ <required> $filter ] + } + } + + Method [ <internal:phalcon> public method setFilters ] { + + - Parameters [1] { + Parameter #0 [ <required> $filters ] + } + } + + Method [ <internal:phalcon> public method getFilters ] { + } + + Method [ <internal:phalcon> public method join ] { + + - Parameters [1] { + Parameter #0 [ <required> $join ] + } + } + + Method [ <internal:phalcon> public method getJoin ] { + } + + Method [ <internal:phalcon> public method getRealTargetPath ] { + + - Parameters [1] { + Parameter #0 [ <optional> $basePath ] + } + } + + Method [ <internal:phalcon> public method setTargetLocal ] { + + - Parameters [1] { + Parameter #0 [ <required> $targetLocal ] + } + } + + Method [ <internal:phalcon> public method getTargetLocal ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Assets\Filters\None implements Phalcon\Assets\FilterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [1] { + Method [ <internal:phalcon, prototype Phalcon\Assets\FilterInterface> public method filter ] { + + - Parameters [1] { + Parameter #0 [ <required> $content ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Assets\Filters\Cssmin implements Phalcon\Assets\FilterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [1] { + Method [ <internal:phalcon, prototype Phalcon\Assets\FilterInterface> public method filter ] { + + - Parameters [1] { + Parameter #0 [ <required> $content ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Assets\Filters\Jsmin implements Phalcon\Assets\FilterInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [1] { + Method [ <internal:phalcon, prototype Phalcon\Assets\FilterInterface> public method filter ] { + + - Parameters [1] { + Parameter #0 [ <required> $content ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Assets\Resource\Css extends Phalcon\Assets\Resource ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [8] { + Property [ <default> protected $_type ] + Property [ <default> protected $_path ] + Property [ <default> protected $_local ] + Property [ <default> protected $_filter ] + Property [ <default> protected $_attributes ] + Property [ <default> protected $_sourcePath ] + Property [ <default> protected $_targetPath ] + Property [ <default> protected $_targetUri ] + } + + - Methods [21] { + Method [ <internal:phalcon, overwrites Phalcon\Assets\Resource, ctor> public method __construct ] { + + - Parameters [4] { + Parameter #0 [ <required> $path ] + Parameter #1 [ <optional> $local ] + Parameter #2 [ <optional> $filter ] + Parameter #3 [ <optional> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method setType ] { + + - Parameters [1] { + Parameter #0 [ <required> $type ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getType ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method setPath ] { + + - Parameters [1] { + Parameter #0 [ <required> $path ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getPath ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method setLocal ] { + + - Parameters [1] { + Parameter #0 [ <required> $local ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getLocal ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method setFilter ] { + + - Parameters [1] { + Parameter #0 [ <required> $filter ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getFilter ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method setAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $attributes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getAttributes ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method setTargetUri ] { + + - Parameters [1] { + Parameter #0 [ <required> $targetUri ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getTargetUri ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method setSourcePath ] { + + - Parameters [1] { + Parameter #0 [ <required> $sourcePath ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getSourcePath ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method setTargetPath ] { + + - Parameters [1] { + Parameter #0 [ <required> $targetPath ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getTargetPath ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getContent ] { + + - Parameters [1] { + Parameter #0 [ <optional> $basePath ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getRealTargetUri ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getRealSourcePath ] { + + - Parameters [1] { + Parameter #0 [ <optional> $basePath ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Assets\Resource> public method getRealTargetPath ] { + + - Parameters [1] { + Parameter #0 [ <optional> $basePath ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Http\Request implements Phalcon\Http\RequestInterface, Phalcon\DI\InjectionAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_filter ] + Property [ <default> protected $_rawBody ] + Property [ <default> protected $_put ] + } + + - Methods [48] { + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method get ] { + + - Parameters [3] { + Parameter #0 [ <optional> $name ] + Parameter #1 [ <optional> $filters ] + Parameter #2 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method getPost ] { + + - Parameters [3] { + Parameter #0 [ <optional> $name ] + Parameter #1 [ <optional> $filters ] + Parameter #2 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method getPut ] { + + - Parameters [3] { + Parameter #0 [ <optional> $name ] + Parameter #1 [ <optional> $filters ] + Parameter #2 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method getQuery ] { + + - Parameters [3] { + Parameter #0 [ <optional> $name ] + Parameter #1 [ <optional> $filters ] + Parameter #2 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method getServer ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method has ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method hasPost ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method hasPut ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method hasQuery ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method hasServer ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method getHeader ] { + + - Parameters [1] { + Parameter #0 [ <required> $header ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method getScheme ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method isAjax ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method isSoapRequested ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method isSecureRequest ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method getRawBody ] { + } + + Method [ <internal:phalcon> public method getJsonRawBody ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method getServerAddress ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method getServerName ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method getHttpHost ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method getClientAddress ] { + + - Parameters [1] { + Parameter #0 [ <optional> $trustForwardedHeader ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method getMethod ] { + } + + Method [ <internal:phalcon> public method getURI ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method getUserAgent ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method isMethod ] { + + - Parameters [1] { + Parameter #0 [ <required> $methods ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method isPost ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method isGet ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method isPut ] { + } + + Method [ <internal:phalcon> public method isPatch ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method isHead ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method isDelete ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method isOptions ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method hasFiles ] { + + - Parameters [1] { + Parameter #0 [ <optional> $notErrored ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method getUploadedFiles ] { + + - Parameters [1] { + Parameter #0 [ <optional> $notErrored ] + } + } + + Method [ <internal:phalcon> public method getHeaders ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method getHTTPReferer ] { + } + + Method [ <internal:phalcon> protected method _getQualityHeader ] { + } + + Method [ <internal:phalcon> protected method _getBestQuality ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method getAcceptableContent ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method getBestAccept ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method getClientCharsets ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method getBestCharset ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method getLanguages ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\RequestInterface> public method getBestLanguage ] { + } + + Method [ <internal:phalcon> public method getBasicAuth ] { + } + + Method [ <internal:phalcon> public method getDigestAuth ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Http\Cookie implements Phalcon\DI\InjectionAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [12] { + Property [ <default> protected $_readed ] + Property [ <default> protected $_restored ] + Property [ <default> protected $_useEncryption ] + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_filter ] + Property [ <default> protected $_name ] + Property [ <default> protected $_value ] + Property [ <default> protected $_expire ] + Property [ <default> protected $_path ] + Property [ <default> protected $_domain ] + Property [ <default> protected $_secure ] + Property [ <default> protected $_httpOnly ] + } + + - Methods [21] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [7] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $value ] + Parameter #2 [ <optional> $expire ] + Parameter #3 [ <optional> $path ] + Parameter #4 [ <optional> $secure ] + Parameter #5 [ <optional> $domain ] + Parameter #6 [ <optional> $httpOnly ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method setValue ] { + + - Parameters [1] { + Parameter #0 [ <required> $value ] + } + } + + Method [ <internal:phalcon> public method getValue ] { + + - Parameters [2] { + Parameter #0 [ <optional> $filters ] + Parameter #1 [ <optional> $defaultValue ] + } + } + + Method [ <internal:phalcon> public method send ] { + } + + Method [ <internal:phalcon> public method restore ] { + } + + Method [ <internal:phalcon> public method delete ] { + } + + Method [ <internal:phalcon> public method useEncryption ] { + + - Parameters [1] { + Parameter #0 [ <required> $useEncryption ] + } + } + + Method [ <internal:phalcon> public method isUsingEncryption ] { + } + + Method [ <internal:phalcon> public method setExpiration ] { + + - Parameters [1] { + Parameter #0 [ <required> $expire ] + } + } + + Method [ <internal:phalcon> public method getExpiration ] { + } + + Method [ <internal:phalcon> public method setPath ] { + + - Parameters [1] { + Parameter #0 [ <required> $path ] + } + } + + Method [ <internal:phalcon> public method getPath ] { + } + + Method [ <internal:phalcon> public method setDomain ] { + + - Parameters [1] { + Parameter #0 [ <required> $domain ] + } + } + + Method [ <internal:phalcon> public method getDomain ] { + } + + Method [ <internal:phalcon> public method setSecure ] { + + - Parameters [1] { + Parameter #0 [ <required> $secure ] + } + } + + Method [ <internal:phalcon> public method getSecure ] { + } + + Method [ <internal:phalcon> public method setHttpOnly ] { + + - Parameters [1] { + Parameter #0 [ <required> $httpOnly ] + } + } + + Method [ <internal:phalcon> public method getHttpOnly ] { + } + + Method [ <internal:phalcon> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Http\Response implements Phalcon\Http\ResponseInterface, Phalcon\DI\InjectionAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [6] { + Property [ <default> protected $_sent ] + Property [ <default> protected $_content ] + Property [ <default> protected $_headers ] + Property [ <default> protected $_cookies ] + Property [ <default> protected $_file ] + Property [ <default> protected $_dependencyInjector ] + } + + - Methods [25] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $content ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $status ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\ResponseInterface> public method setStatusCode ] { + + - Parameters [2] { + Parameter #0 [ <required> $code ] + Parameter #1 [ <required> $message ] + } + } + + Method [ <internal:phalcon> public method setHeaders ] { + + - Parameters [1] { + Parameter #0 [ <required> $headers ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\ResponseInterface> public method getHeaders ] { + } + + Method [ <internal:phalcon> public method setCookies ] { + + - Parameters [1] { + Parameter #0 [ <required> $cookies ] + } + } + + Method [ <internal:phalcon> public method getCookies ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\ResponseInterface> public method setHeader ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\ResponseInterface> public method setRawHeader ] { + + - Parameters [1] { + Parameter #0 [ <required> $header ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\ResponseInterface> public method resetHeaders ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\ResponseInterface> public method setExpires ] { + + - Parameters [1] { + Parameter #0 [ <required> $datetime ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\ResponseInterface> public method setNotModified ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\ResponseInterface> public method setContentType ] { + + - Parameters [2] { + Parameter #0 [ <required> $contentType ] + Parameter #1 [ <optional> $charset ] + } + } + + Method [ <internal:phalcon> public method setEtag ] { + + - Parameters [1] { + Parameter #0 [ <required> $etag ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\ResponseInterface> public method redirect ] { + + - Parameters [3] { + Parameter #0 [ <optional> $location ] + Parameter #1 [ <optional> $externalRedirect ] + Parameter #2 [ <optional> $statusCode ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\ResponseInterface> public method setContent ] { + + - Parameters [1] { + Parameter #0 [ <required> $content ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\ResponseInterface> public method setJsonContent ] { + + - Parameters [1] { + Parameter #0 [ <required> $content ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\ResponseInterface> public method appendContent ] { + + - Parameters [1] { + Parameter #0 [ <required> $content ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\ResponseInterface> public method getContent ] { + } + + Method [ <internal:phalcon> public method isSent ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\ResponseInterface> public method sendHeaders ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\ResponseInterface> public method sendCookies ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\ResponseInterface> public method send ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\ResponseInterface> public method setFileToSend ] { + + - Parameters [2] { + Parameter #0 [ <required> $filePath ] + Parameter #1 [ <optional> $attachmentName ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Http\Request\File extends SplFileInfo implements Phalcon\Http\Request\FileInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ <internal:phalcon> static public method __set_state ] { + + - Parameters [1] { + Parameter #0 [ <required> $params ] + } + } + } + + - Properties [8] { + Property [ <default> protected $_name ] + Property [ <default> protected $_tmp ] + Property [ <default> protected $_size ] + Property [ <default> protected $_type ] + Property [ <default> protected $_real_type ] + Property [ <default> protected $_error ] + Property [ <default> protected $_key ] + Property [ <default> protected $_extension ] + } + + - Methods [37] { + Method [ <internal:phalcon, overwrites SplFileInfo, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $file ] + } + } + + Method [ <internal:phalcon, overwrites SplFileInfo, prototype Phalcon\Http\Request\FileInterface> public method getSize ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\Request\FileInterface> public method getName ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\Request\FileInterface> public method getTempName ] { + } + + Method [ <internal:phalcon, overwrites SplFileInfo, prototype Phalcon\Http\Request\FileInterface> public method getType ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\Request\FileInterface> public method getRealType ] { + } + + Method [ <internal:phalcon> public method getError ] { + } + + Method [ <internal:phalcon> public method getKey ] { + } + + Method [ <internal:phalcon> public method isUploadedFile ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\Request\FileInterface> public method moveTo ] { + + - Parameters [1] { + Parameter #0 [ <required> $destination ] + } + } + + Method [ <internal:phalcon, overwrites SplFileInfo, prototype SplFileInfo> public method getExtension ] { + } + + Method [ <internal:SPL, inherits SplFileInfo> public method getPath ] { + + - Parameters [0] { + } + } + + Method [ <internal:SPL, inherits SplFileInfo> public method getFilename ] { + + - Parameters [0] { + } + } + + Method [ <internal:SPL, inherits SplFileInfo> public method getBasename ] { + + - Parameters [1] { + Parameter #0 [ <optional> $suffix ] + } + } + + Method [ <internal:SPL, inherits SplFileInfo> public method getPathname ] { + + - Parameters [0] { + } + } + + Method [ <internal:SPL, inherits SplFileInfo> public method getPerms ] { + + - Parameters [0] { + } + } + + Method [ <internal:SPL, inherits SplFileInfo> public method getInode ] { + + - Parameters [0] { + } + } + + Method [ <internal:SPL, inherits SplFileInfo> public method getOwner ] { + + - Parameters [0] { + } + } + + Method [ <internal:SPL, inherits SplFileInfo> public method getGroup ] { + + - Parameters [0] { + } + } + + Method [ <internal:SPL, inherits SplFileInfo> public method getATime ] { + + - Parameters [0] { + } + } + + Method [ <internal:SPL, inherits SplFileInfo> public method getMTime ] { + + - Parameters [0] { + } + } + + Method [ <internal:SPL, inherits SplFileInfo> public method getCTime ] { + + - Parameters [0] { + } + } + + Method [ <internal:SPL, inherits SplFileInfo> public method isWritable ] { + + - Parameters [0] { + } + } + + Method [ <internal:SPL, inherits SplFileInfo> public method isReadable ] { + + - Parameters [0] { + } + } + + Method [ <internal:SPL, inherits SplFileInfo> public method isExecutable ] { + + - Parameters [0] { + } + } + + Method [ <internal:SPL, inherits SplFileInfo> public method isFile ] { + + - Parameters [0] { + } + } + + Method [ <internal:SPL, inherits SplFileInfo> public method isDir ] { + + - Parameters [0] { + } + } + + Method [ <internal:SPL, inherits SplFileInfo> public method isLink ] { + + - Parameters [0] { + } + } + + Method [ <internal:SPL, inherits SplFileInfo> public method getLinkTarget ] { + + - Parameters [0] { + } + } + + Method [ <internal:SPL, inherits SplFileInfo> public method getRealPath ] { + + - Parameters [0] { + } + } + + Method [ <internal:SPL, inherits SplFileInfo> public method getFileInfo ] { + + - Parameters [1] { + Parameter #0 [ <optional> $class_name ] + } + } + + Method [ <internal:SPL, inherits SplFileInfo> public method getPathInfo ] { + + - Parameters [1] { + Parameter #0 [ <optional> $class_name ] + } + } + + Method [ <internal:SPL, inherits SplFileInfo> public method openFile ] { + + - Parameters [3] { + Parameter #0 [ <optional> $open_mode ] + Parameter #1 [ <optional> $use_include_path ] + Parameter #2 [ <optional> $context ] + } + } + + Method [ <internal:SPL, inherits SplFileInfo> public method setFileClass ] { + + - Parameters [1] { + Parameter #0 [ <optional> $class_name ] + } + } + + Method [ <internal:SPL, inherits SplFileInfo> public method setInfoClass ] { + + - Parameters [1] { + Parameter #0 [ <optional> $class_name ] + } + } + + Method [ <internal:SPL, inherits SplFileInfo> final public method _bad_state_ex ] { + } + + Method [ <internal:SPL, inherits SplFileInfo> public method __toString ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Http\Response\Cookies implements Phalcon\Http\Response\CookiesInterface, Phalcon\DI\InjectionAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_registered ] + Property [ <default> protected $_useEncryption ] + Property [ <default> protected $_cookies ] + } + + - Methods [10] { + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\Response\CookiesInterface> public method useEncryption ] { + + - Parameters [1] { + Parameter #0 [ <required> $useEncryption ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\Response\CookiesInterface> public method isUsingEncryption ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\Response\CookiesInterface> public method set ] { + + - Parameters [7] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $value ] + Parameter #2 [ <optional> $expire ] + Parameter #3 [ <optional> $path ] + Parameter #4 [ <optional> $secure ] + Parameter #5 [ <optional> $domain ] + Parameter #6 [ <optional> $httpOnly ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\Response\CookiesInterface> public method get ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\Response\CookiesInterface> public method has ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\Response\CookiesInterface> public method delete ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\Response\CookiesInterface> public method send ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\Response\CookiesInterface> public method reset ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Http\Response\Headers implements Phalcon\Http\Response\HeadersInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ <internal:phalcon> static public method __set_state ] { + + - Parameters [1] { + Parameter #0 [ <required> $data ] + } + } + } + + - Properties [1] { + Property [ <default> protected $_headers ] + } + + - Methods [7] { + Method [ <internal:phalcon, prototype Phalcon\Http\Response\HeadersInterface> public method set ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\Response\HeadersInterface> public method get ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\Response\HeadersInterface> public method setRaw ] { + + - Parameters [1] { + Parameter #0 [ <required> $header ] + } + } + + Method [ <internal:phalcon> public method remove ] { + + - Parameters [1] { + Parameter #0 [ <required> $header_index ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Http\Response\HeadersInterface> public method send ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\Response\HeadersInterface> public method reset ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Http\Response\HeadersInterface> public method toArray ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Queue\Beanstalk ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_connection ] + Property [ <default> protected $_parameters ] + } + + - Methods [15] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon> public method connect ] { + } + + Method [ <internal:phalcon> public method put ] { + + - Parameters [2] { + Parameter #0 [ <required> $data ] + Parameter #1 [ <optional> $options ] + } + } + + Method [ <internal:phalcon> public method reserve ] { + + - Parameters [1] { + Parameter #0 [ <optional> $timeout ] + } + } + + Method [ <internal:phalcon> public method choose ] { + + - Parameters [1] { + Parameter #0 [ <required> $tube ] + } + } + + Method [ <internal:phalcon> public method watch ] { + + - Parameters [1] { + Parameter #0 [ <required> $tube ] + } + } + + Method [ <internal:phalcon> public method peekReady ] { + } + + Method [ <internal:phalcon> public method peekDelayed ] { + } + + Method [ <internal:phalcon> public method peekBuried ] { + } + + Method [ <internal:phalcon> protected method readStatus ] { + } + + Method [ <internal:phalcon> public method read ] { + + - Parameters [1] { + Parameter #0 [ <optional> $length ] + } + } + + Method [ <internal:phalcon> protected method write ] { + } + + Method [ <internal:phalcon> public method disconnect ] { + } + + Method [ <internal:phalcon> public method __sleep ] { + } + + Method [ <internal:phalcon> public method __wakeup ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Queue\Beanstalk\Job ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [3] { + Property [ <default> protected $_queue ] + Property [ <default> protected $_id ] + Property [ <default> protected $_body ] + } + + - Methods [9] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [3] { + Parameter #0 [ <required> $queue ] + Parameter #1 [ <required> $id ] + Parameter #2 [ <required> $body ] + } + } + + Method [ <internal:phalcon> public method getId ] { + } + + Method [ <internal:phalcon> public method getBody ] { + } + + Method [ <internal:phalcon> public method delete ] { + } + + Method [ <internal:phalcon> public method release ] { + } + + Method [ <internal:phalcon> public method bury ] { + } + + Method [ <internal:phalcon> public method touch ] { + } + + Method [ <internal:phalcon> public method kick ] { + } + + Method [ <internal:phalcon> public method __wakeup ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\View extends Phalcon\DI\Injectable implements Phalcon\Events\EventsAwareInterface, Phalcon\DI\InjectionAwareInterface, Phalcon\Mvc\ViewInterface ] { + + - Constants [6] { + Constant [ integer LEVEL_MAIN_LAYOUT ] { 5 } + Constant [ integer LEVEL_AFTER_TEMPLATE ] { 4 } + Constant [ integer LEVEL_LAYOUT ] { 3 } + Constant [ integer LEVEL_BEFORE_TEMPLATE ] { 2 } + Constant [ integer LEVEL_ACTION_VIEW ] { 1 } + Constant [ integer LEVEL_NO_RENDER ] { 0 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [26] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_options ] + Property [ <default> protected $_basePath ] + Property [ <default> protected $_content ] + Property [ <default> protected $_renderLevel ] + Property [ <default> protected $_currentRenderLevel ] + Property [ <default> protected $_disabledLevels ] + Property [ <default> protected $_viewParams ] + Property [ <default> protected $_layout ] + Property [ <default> protected $_layoutsDir ] + Property [ <default> protected $_partialsDir ] + Property [ <default> protected $_viewsDir ] + Property [ <default> protected $_templatesBefore ] + Property [ <default> protected $_templatesAfter ] + Property [ <default> protected $_engines ] + Property [ <default> protected $_registeredEngines ] + Property [ <default> protected $_mainView ] + Property [ <default> protected $_controllerName ] + Property [ <default> protected $_actionName ] + Property [ <default> protected $_params ] + Property [ <default> protected $_pickView ] + Property [ <default> protected $_cache ] + Property [ <default> protected $_cacheLevel ] + Property [ <default> protected $_activeRenderPath ] + Property [ <default> protected $_disabled ] + } + + - Methods [58] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method setViewsDir ] { + + - Parameters [1] { + Parameter #0 [ <required> $viewsDir ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method getViewsDir ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method setLayoutsDir ] { + + - Parameters [1] { + Parameter #0 [ <required> $layoutsDir ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method getLayoutsDir ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method setPartialsDir ] { + + - Parameters [1] { + Parameter #0 [ <required> $partialsDir ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method getPartialsDir ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method setBasePath ] { + + - Parameters [1] { + Parameter #0 [ <required> $basePath ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method getCurrentRenderLevel ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method getRenderLevel ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method setRenderLevel ] { + + - Parameters [1] { + Parameter #0 [ <required> $level ] + } + } + + Method [ <internal:phalcon> public method disableLevel ] { + + - Parameters [1] { + Parameter #0 [ <required> $level ] + } + } + + Method [ <internal:phalcon> public method getDisabledLevels ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method setMainView ] { + + - Parameters [1] { + Parameter #0 [ <required> $viewPath ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method getMainView ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method setLayout ] { + + - Parameters [1] { + Parameter #0 [ <required> $layout ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method getLayout ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method setTemplateBefore ] { + + - Parameters [1] { + Parameter #0 [ <required> $templateBefore ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method cleanTemplateBefore ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method setTemplateAfter ] { + + - Parameters [1] { + Parameter #0 [ <required> $templateAfter ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method cleanTemplateAfter ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method setParamToView ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> public method setVars ] { + + - Parameters [2] { + Parameter #0 [ <required> $params ] + Parameter #1 [ <optional> $merge ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method setVar ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> public method getVar ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method getParamsToView ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method getControllerName ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method getActionName ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method getParams ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method start ] { + } + + Method [ <internal:phalcon> protected method _loadTemplateEngines ] { + } + + Method [ <internal:phalcon> protected method _engineRender ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method registerEngines ] { + + - Parameters [1] { + Parameter #0 [ <required> $engines ] + } + } + + Method [ <internal:phalcon> public method getRegisteredEngines ] { + } + + Method [ <internal:phalcon> public method exists ] { + + - Parameters [1] { + Parameter #0 [ <required> $view ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method render ] { + + - Parameters [3] { + Parameter #0 [ <required> $controllerName ] + Parameter #1 [ <required> $actionName ] + Parameter #2 [ <optional> $params ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method pick ] { + + - Parameters [1] { + Parameter #0 [ <required> $renderView ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method partial ] { + + - Parameters [1] { + Parameter #0 [ <required> $partialPath ] + } + } + + Method [ <internal:phalcon> public method getRender ] { + + - Parameters [4] { + Parameter #0 [ <required> $controllerName ] + Parameter #1 [ <required> $actionName ] + Parameter #2 [ <optional> $params ] + Parameter #3 [ <optional> $configCallback ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method finish ] { + } + + Method [ <internal:phalcon> protected method _createCache ] { + } + + Method [ <internal:phalcon> public method isCaching ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method getCache ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method cache ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method setContent ] { + + - Parameters [1] { + Parameter #0 [ <required> $content ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method getContent ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method getActiveRenderPath ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method disable ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method enable ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method isDisabled ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ViewInterface> public method reset ] { + } + + Method [ <internal:phalcon> public method __set ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\DI\Injectable, prototype Phalcon\DI\Injectable> public method __get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon> public method __isset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Url implements Phalcon\Mvc\UrlInterface, Phalcon\DI\InjectionAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [5] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_baseUri ] + Property [ <default> protected $_staticBaseUri ] + Property [ <default> protected $_basePath ] + Property [ <default> protected $_router ] + } + + - Methods [11] { + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\UrlInterface> public method setBaseUri ] { + + - Parameters [1] { + Parameter #0 [ <required> $baseUri ] + } + } + + Method [ <internal:phalcon> public method setStaticBaseUri ] { + + - Parameters [1] { + Parameter #0 [ <required> $staticBaseUri ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\UrlInterface> public method getBaseUri ] { + } + + Method [ <internal:phalcon> public method getStaticBaseUri ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\UrlInterface> public method setBasePath ] { + + - Parameters [1] { + Parameter #0 [ <required> $basePath ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\UrlInterface> public method getBasePath ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\UrlInterface> public method get ] { + + - Parameters [3] { + Parameter #0 [ <optional> $uri ] + Parameter #1 [ <optional> $args ] + Parameter #2 [ <optional> $local ] + } + } + + Method [ <internal:phalcon> public method getStatic ] { + + - Parameters [1] { + Parameter #0 [ <optional> $uri ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\UrlInterface> public method path ] { + + - Parameters [1] { + Parameter #0 [ <optional> $path ] + } + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Mvc\Model implements Phalcon\Mvc\ModelInterface, Phalcon\Mvc\Model\ResultInterface, Phalcon\DI\InjectionAwareInterface, Serializable ] { + + - Constants [7] { + Constant [ integer OP_NONE ] { 0 } + Constant [ integer OP_CREATE ] { 1 } + Constant [ integer OP_UPDATE ] { 2 } + Constant [ integer OP_DELETE ] { 3 } + Constant [ integer DIRTY_STATE_PERSISTENT ] { 0 } + Constant [ integer DIRTY_STATE_TRANSIENT ] { 1 } + Constant [ integer DIRTY_STATE_DETACHED ] { 2 } + } + + - Static properties [0] { + } + + - Static methods [14] { + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> static public method cloneResultMap ] { + + - Parameters [5] { + Parameter #0 [ <required> $base ] + Parameter #1 [ <required> $data ] + Parameter #2 [ <required> $columnMap ] + Parameter #3 [ <optional> $dirtyState ] + Parameter #4 [ <optional> $keepSnapshots ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> static public method cloneResultMapHydrate ] { + + - Parameters [3] { + Parameter #0 [ <required> $data ] + Parameter #1 [ <required> $columnMap ] + Parameter #2 [ <required> $hydrationMode ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> static public method cloneResult ] { + + - Parameters [3] { + Parameter #0 [ <required> $base ] + Parameter #1 [ <required> $data ] + Parameter #2 [ <optional> $dirtyState ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> static public method find ] { + + - Parameters [1] { + Parameter #0 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> static public method findFirst ] { + + - Parameters [1] { + Parameter #0 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> static public method query ] { + + - Parameters [1] { + Parameter #0 [ <optional> $dependencyInjector ] + } + } + + Method [ <internal:phalcon> static protected method _groupResult ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> static public method count ] { + + - Parameters [1] { + Parameter #0 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> static public method sum ] { + + - Parameters [1] { + Parameter #0 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> static public method maximum ] { + + - Parameters [1] { + Parameter #0 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> static public method minimum ] { + + - Parameters [1] { + Parameter #0 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> static public method average ] { + + - Parameters [1] { + Parameter #0 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon> static public method __callStatic ] { + + - Parameters [2] { + Parameter #0 [ <required> $method ] + Parameter #1 [ <optional> $arguments ] + } + } + + Method [ <internal:phalcon> static public method setup ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + } + + - Properties [13] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_modelsManager ] + Property [ <default> protected $_modelsMetaData ] + Property [ <default> protected $_errorMessages ] + Property [ <default> protected $_operationMade ] + Property [ <default> protected $_dirtyState ] + Property [ <default> protected $_transaction ] + Property [ <default> protected $_uniqueKey ] + Property [ <default> protected $_uniqueParams ] + Property [ <default> protected $_uniqueTypes ] + Property [ <default> protected $_skipped ] + Property [ <default> protected $_related ] + Property [ <default> protected $_snapshot ] + } + + - Methods [73] { + Method [ <internal:phalcon, ctor> final public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <optional> $dependencyInjector ] + Parameter #1 [ <optional> $modelsManager ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> protected method setEventsManager ] { + } + + Method [ <internal:phalcon> protected method getEventsManager ] { + } + + Method [ <internal:phalcon> public method getModelsMetaData ] { + } + + Method [ <internal:phalcon> public method getModelsManager ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method setTransaction ] { + + - Parameters [1] { + Parameter #0 [ <required> $transaction ] + } + } + + Method [ <internal:phalcon> protected method setSource ] { + + - Parameters [1] { + Parameter #0 [ <required> $source ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method getSource ] { + } + + Method [ <internal:phalcon> protected method setSchema ] { + + - Parameters [1] { + Parameter #0 [ <required> $schema ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method getSchema ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method setConnectionService ] { + + - Parameters [1] { + Parameter #0 [ <required> $connectionService ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method setReadConnectionService ] { + + - Parameters [1] { + Parameter #0 [ <required> $connectionService ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method setWriteConnectionService ] { + + - Parameters [1] { + Parameter #0 [ <required> $connectionService ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method getReadConnectionService ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method getWriteConnectionService ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ResultInterface> public method setDirtyState ] { + + - Parameters [1] { + Parameter #0 [ <required> $dirtyState ] + } + } + + Method [ <internal:phalcon> public method getDirtyState ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method getReadConnection ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method getWriteConnection ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method assign ] { + + - Parameters [2] { + Parameter #0 [ <required> $data ] + Parameter #1 [ <optional> $columnMap ] + } + } + + Method [ <internal:phalcon> protected method _exists ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method fireEvent ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventName ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method fireEventCancel ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventName ] + } + } + + Method [ <internal:phalcon> protected method _cancelOperation ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method appendMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon> protected method validate ] { + + - Parameters [1] { + Parameter #0 [ <required> $validator ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method validationHasFailed ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method getMessages ] { + + - Parameters [1] { + Parameter #0 [ <optional> $filter ] + } + } + + Method [ <internal:phalcon> protected method _checkForeignKeysRestrict ] { + } + + Method [ <internal:phalcon> protected method _checkForeignKeysReverseRestrict ] { + } + + Method [ <internal:phalcon> protected method _checkForeignKeysReverseCascade ] { + } + + Method [ <internal:phalcon> protected method _preSave ] { + } + + Method [ <internal:phalcon> protected method _postSave ] { + } + + Method [ <internal:phalcon> protected method _doLowInsert ] { + } + + Method [ <internal:phalcon> protected method _doLowUpdate ] { + } + + Method [ <internal:phalcon> protected method _preSaveRelatedRecords ] { + } + + Method [ <internal:phalcon> protected method _postSaveRelatedRecords ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method save ] { + + - Parameters [2] { + Parameter #0 [ <optional> $data ] + Parameter #1 [ <optional> $whiteList ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method create ] { + + - Parameters [2] { + Parameter #0 [ <optional> $data ] + Parameter #1 [ <optional> $whiteList ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method update ] { + + - Parameters [2] { + Parameter #0 [ <optional> $data ] + Parameter #1 [ <optional> $whiteList ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method delete ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method getOperationMade ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method refresh ] { + } + + Method [ <internal:phalcon> public method skipOperation ] { + + - Parameters [1] { + Parameter #0 [ <required> $skip ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method readAttribute ] { + + - Parameters [1] { + Parameter #0 [ <required> $attribute ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method writeAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> protected method skipAttributes ] { + + - Parameters [2] { + Parameter #0 [ <required> $attributes ] + Parameter #1 [ <optional> $replace ] + } + } + + Method [ <internal:phalcon> protected method skipAttributesOnCreate ] { + + - Parameters [2] { + Parameter #0 [ <required> $attributes ] + Parameter #1 [ <optional> $replace ] + } + } + + Method [ <internal:phalcon> protected method skipAttributesOnUpdate ] { + + - Parameters [2] { + Parameter #0 [ <required> $attributes ] + Parameter #1 [ <optional> $replace ] + } + } + + Method [ <internal:phalcon> public method hasOne ] { + + - Parameters [4] { + Parameter #0 [ <required> $fields ] + Parameter #1 [ <required> $referenceModel ] + Parameter #2 [ <required> $referencedFields ] + Parameter #3 [ <optional> $options ] + } + } + + Method [ <internal:phalcon> public method belongsTo ] { + + - Parameters [4] { + Parameter #0 [ <required> $fields ] + Parameter #1 [ <required> $referenceModel ] + Parameter #2 [ <required> $referencedFields ] + Parameter #3 [ <optional> $options ] + } + } + + Method [ <internal:phalcon> public method hasMany ] { + + - Parameters [4] { + Parameter #0 [ <required> $fields ] + Parameter #1 [ <required> $referenceModel ] + Parameter #2 [ <required> $referencedFields ] + Parameter #3 [ <optional> $options ] + } + } + + Method [ <internal:phalcon> public method hasManyToMany ] { + + - Parameters [7] { + Parameter #0 [ <required> $fields ] + Parameter #1 [ <required> $intermediateModel ] + Parameter #2 [ <required> $intermediateFields ] + Parameter #3 [ <required> $intermediateReferencedFields ] + Parameter #4 [ <required> $referenceModel ] + Parameter #5 [ <required> $referencedFields ] + Parameter #6 [ <optional> $options ] + } + } + + Method [ <internal:phalcon> public method addBehavior ] { + + - Parameters [1] { + Parameter #0 [ <required> $behavior ] + } + } + + Method [ <internal:phalcon> protected method keepSnapshots ] { + + - Parameters [1] { + Parameter #0 [ <required> $keepSnapshots ] + } + } + + Method [ <internal:phalcon> public method setSnapshotData ] { + + - Parameters [2] { + Parameter #0 [ <required> $data ] + Parameter #1 [ <optional> $columnMap ] + } + } + + Method [ <internal:phalcon> public method hasSnapshotData ] { + } + + Method [ <internal:phalcon> public method getSnapshotData ] { + } + + Method [ <internal:phalcon> public method hasChanged ] { + + - Parameters [1] { + Parameter #0 [ <optional> $fieldName ] + } + } + + Method [ <internal:phalcon> public method getChangedFields ] { + } + + Method [ <internal:phalcon> protected method useDynamicUpdate ] { + + - Parameters [1] { + Parameter #0 [ <required> $dynamicUpdate ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\ModelInterface> public method getRelated ] { + + - Parameters [2] { + Parameter #0 [ <required> $alias ] + Parameter #1 [ <optional> $arguments ] + } + } + + Method [ <internal:phalcon> protected method _getRelatedRecords ] { + } + + Method [ <internal:phalcon> public method __call ] { + + - Parameters [2] { + Parameter #0 [ <required> $method ] + Parameter #1 [ <optional> $arguments ] + } + } + + Method [ <internal:phalcon> public method __set ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> public method __get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon> public method __isset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, prototype Serializable> public method serialize ] { + } + + Method [ <internal:phalcon, prototype Serializable> public method unserialize ] { + + - Parameters [1] { + Parameter #0 [ <required> $data ] + } + } + + Method [ <internal:phalcon> public method dump ] { + } + + Method [ <internal:phalcon> public method toArray ] { + + - Parameters [1] { + Parameter #0 [ <optional> $columns ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Micro extends Phalcon\DI\Injectable implements Phalcon\Events\EventsAwareInterface, Phalcon\DI\InjectionAwareInterface, ArrayAccess ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [11] { + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_handlers ] + Property [ <default> protected $_router ] + Property [ <default> protected $_stopped ] + Property [ <default> protected $_notFoundHandler ] + Property [ <default> protected $_activeHandler ] + Property [ <default> protected $_beforeHandlers ] + Property [ <default> protected $_afterHandlers ] + Property [ <default> protected $_finishHandlers ] + Property [ <default> protected $_returnedValue ] + } + + - Methods [34] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon> public method map ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon> public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon> public method post ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon> public method put ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon> public method patch ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon> public method head ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon> public method delete ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon> public method options ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon> public method mount ] { + + - Parameters [1] { + Parameter #0 [ <required> $collection ] + } + } + + Method [ <internal:phalcon> public method notFound ] { + + - Parameters [1] { + Parameter #0 [ <required> $handler ] + } + } + + Method [ <internal:phalcon> public method getRouter ] { + } + + Method [ <internal:phalcon> public method setService ] { + + - Parameters [3] { + Parameter #0 [ <required> $serviceName ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <optional> $shared ] + } + } + + Method [ <internal:phalcon> public method hasService ] { + + - Parameters [1] { + Parameter #0 [ <required> $serviceName ] + } + } + + Method [ <internal:phalcon> public method getService ] { + + - Parameters [1] { + Parameter #0 [ <required> $serviceName ] + } + } + + Method [ <internal:phalcon> public method getSharedService ] { + + - Parameters [1] { + Parameter #0 [ <required> $serviceName ] + } + } + + Method [ <internal:phalcon> public method handle ] { + + - Parameters [1] { + Parameter #0 [ <optional> $uri ] + } + } + + Method [ <internal:phalcon> public method stop ] { + } + + Method [ <internal:phalcon> public method setActiveHandler ] { + + - Parameters [1] { + Parameter #0 [ <required> $activeHandler ] + } + } + + Method [ <internal:phalcon> public method getActiveHandler ] { + } + + Method [ <internal:phalcon> public method getReturnedValue ] { + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $serviceName ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [3] { + Parameter #0 [ <required> $serviceName ] + Parameter #1 [ <required> $definition ] + Parameter #2 [ <optional> $shared ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $serviceName ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $alias ] + } + } + + Method [ <internal:phalcon> public method before ] { + + - Parameters [1] { + Parameter #0 [ <required> $handler ] + } + } + + Method [ <internal:phalcon> public method after ] { + + - Parameters [1] { + Parameter #0 [ <required> $handler ] + } + } + + Method [ <internal:phalcon> public method finish ] { + + - Parameters [1] { + Parameter #0 [ <required> $handler ] + } + } + + Method [ <internal:phalcon> public method getHandlers ] { + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable> public method __get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Application extends Phalcon\DI\Injectable implements Phalcon\Events\EventsAwareInterface, Phalcon\DI\InjectionAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [6] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_defaultModule ] + Property [ <default> protected $_modules ] + Property [ <default> protected $_moduleObject ] + Property [ <default> protected $_implicitView ] + } + + - Methods [12] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $dependencyInjector ] + } + } + + Method [ <internal:phalcon> public method useImplicitView ] { + + - Parameters [1] { + Parameter #0 [ <required> $implicitView ] + } + } + + Method [ <internal:phalcon> public method registerModules ] { + + - Parameters [2] { + Parameter #0 [ <required> $modules ] + Parameter #1 [ <optional> $merge ] + } + } + + Method [ <internal:phalcon> public method getModules ] { + } + + Method [ <internal:phalcon> public method setDefaultModule ] { + + - Parameters [1] { + Parameter #0 [ <required> $defaultModule ] + } + } + + Method [ <internal:phalcon> public method getDefaultModule ] { + } + + Method [ <internal:phalcon> public method handle ] { + + - Parameters [1] { + Parameter #0 [ <optional> $uri ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable> public method __get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Collection implements Phalcon\Mvc\CollectionInterface, Phalcon\DI\InjectionAwareInterface, Serializable ] { + + - Constants [4] { + Constant [ integer OP_NONE ] { 0 } + Constant [ integer OP_CREATE ] { 1 } + Constant [ integer OP_UPDATE ] { 2 } + Constant [ integer OP_DELETE ] { 3 } + } + + - Static properties [2] { + Property [ protected static $_reserved ] + Property [ protected static $_disableEvents ] + } + + - Static methods [10] { + Method [ <internal:phalcon, prototype Phalcon\Mvc\CollectionInterface> static public method cloneResult ] { + + - Parameters [2] { + Parameter #0 [ <required> $collection ] + Parameter #1 [ <required> $document ] + } + } + + Method [ <internal:phalcon> static protected method _getResultset ] { + } + + Method [ <internal:phalcon> static protected method _getGroupResultset ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\CollectionInterface> static public method findById ] { + + - Parameters [1] { + Parameter #0 [ <required> $id ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\CollectionInterface> static public method findFirst ] { + + - Parameters [1] { + Parameter #0 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\CollectionInterface> static public method find ] { + + - Parameters [1] { + Parameter #0 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\CollectionInterface> static public method count ] { + + - Parameters [1] { + Parameter #0 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon> static public method aggregate ] { + + - Parameters [1] { + Parameter #0 [ <required> $parameters ] + } + } + + Method [ <internal:phalcon> static public method summatory ] { + + - Parameters [3] { + Parameter #0 [ <required> $field ] + Parameter #1 [ <optional> $conditions ] + Parameter #2 [ <optional> $finalize ] + } + } + + Method [ <internal:phalcon> static public method execute ] { + + - Parameters [2] { + Parameter #0 [ <required> $code ] + Parameter #1 [ <optional> $args ] + } + } + } + + - Properties [7] { + Property [ <default> public $_id ] + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_modelsManager ] + Property [ <default> protected $_source ] + Property [ <default> protected $_operationMade ] + Property [ <default> protected $_connection ] + Property [ <default> protected $_errorMessages ] + } + + - Methods [32] { + Method [ <internal:phalcon, ctor> final public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\CollectionInterface> public method setId ] { + + - Parameters [1] { + Parameter #0 [ <required> $id ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\CollectionInterface> public method getId ] { + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> protected method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon> protected method getEventsManager ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method getModelsManager ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\CollectionInterface> public method getReservedAttributes ] { + } + + Method [ <internal:phalcon> protected method useImplicitObjectIds ] { + } + + Method [ <internal:phalcon> protected method setSource ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\CollectionInterface> public method getSource ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\CollectionInterface> public method setConnectionService ] { + + - Parameters [1] { + Parameter #0 [ <required> $connectionService ] + } + } + + Method [ <internal:phalcon> public method getConnectionService ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\CollectionInterface> public method getConnection ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\CollectionInterface> public method readAttribute ] { + + - Parameters [1] { + Parameter #0 [ <required> $attribute ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\CollectionInterface> public method writeAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> protected method _preSave ] { + } + + Method [ <internal:phalcon> protected method _postSave ] { + } + + Method [ <internal:phalcon> protected method validate ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\CollectionInterface> public method validationHasFailed ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\CollectionInterface> public method fireEvent ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventName ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\CollectionInterface> public method fireEventCancel ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventName ] + } + } + + Method [ <internal:phalcon> protected method _cancelOperation ] { + } + + Method [ <internal:phalcon> protected method _exists ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\CollectionInterface> public method getMessages ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\CollectionInterface> public method appendMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\CollectionInterface> public method save ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\CollectionInterface> public method delete ] { + } + + Method [ <internal:phalcon> public method toArray ] { + } + + Method [ <internal:phalcon, prototype Serializable> public method serialize ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Serializable> public method unserialize ] { + + - Parameters [1] { + Parameter #0 [ <optional> $serialized ] + } + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Mvc\Controller extends Phalcon\DI\Injectable implements Phalcon\Events\EventsAwareInterface, Phalcon\DI\InjectionAwareInterface, Phalcon\Mvc\ControllerInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_eventsManager ] + } + + - Methods [6] { + Method [ <internal:phalcon, ctor> final public method __construct ] { + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable> public method __get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Collection\Document implements ArrayAccess ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [6] { + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $index ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $index ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $index ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $offset ] + } + } + + Method [ <internal:phalcon> public method readAttribute ] { + + - Parameters [1] { + Parameter #0 [ <required> $attribute ] + } + } + + Method [ <internal:phalcon> public method writeAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $attribute ] + Parameter #1 [ <required> $value ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Collection\Manager implements Phalcon\DI\InjectionAwareInterface, Phalcon\Events\EventsAwareInterface, Phalcon\Mvc\Collection\ManagerInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [7] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_initialized ] + Property [ <default> protected $_lastInitialized ] + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_customEventsManager ] + Property [ <default> protected $_connectionServices ] + Property [ <default> protected $_implicitObjectsIds ] + } + + - Methods [14] { + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Collection\ManagerInterface> public method setCustomEventsManager ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Collection\ManagerInterface> public method getCustomEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Collection\ManagerInterface> public method initialize ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Collection\ManagerInterface> public method isInitialized ] { + + - Parameters [1] { + Parameter #0 [ <required> $modelName ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Collection\ManagerInterface> public method getLastInitialized ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Collection\ManagerInterface> public method setConnectionService ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $connectionService ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Collection\ManagerInterface> public method useImplicitObjectIds ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $useImplicitObjectIds ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Collection\ManagerInterface> public method isUsingImplicitObjectIds ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Collection\ManagerInterface> public method getConnection ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Collection\ManagerInterface> public method notifyEvent ] { + + - Parameters [2] { + Parameter #0 [ <required> $eventName ] + Parameter #1 [ <required> $model ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Dispatcher extends Phalcon\Dispatcher implements Phalcon\Events\EventsAwareInterface, Phalcon\DI\InjectionAwareInterface, Phalcon\DispatcherInterface, Phalcon\Mvc\DispatcherInterface ] { + + - Constants [6] { + Constant [ integer EXCEPTION_NO_DI ] { 0 } + Constant [ integer EXCEPTION_CYCLIC_ROUTING ] { 1 } + Constant [ integer EXCEPTION_HANDLER_NOT_FOUND ] { 2 } + Constant [ integer EXCEPTION_INVALID_HANDLER ] { 3 } + Constant [ integer EXCEPTION_INVALID_PARAMS ] { 4 } + Constant [ integer EXCEPTION_ACTION_NOT_FOUND ] { 5 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [20] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_activeHandler ] + Property [ <default> protected $_finished ] + Property [ <default> protected $_forwarded ] + Property [ <default> protected $_moduleName ] + Property [ <default> protected $_namespaceName ] + Property [ <default> protected $_handlerName ] + Property [ <default> protected $_actionName ] + Property [ <default> protected $_params ] + Property [ <default> protected $_returnedValue ] + Property [ <default> protected $_lastHandler ] + Property [ <default> protected $_defaultNamespace ] + Property [ <default> protected $_actionSuffix ] + Property [ <default> protected $_isExactHandler ] + Property [ <default> protected $_previousHandlerName ] + Property [ <default> protected $_previousActionName ] + Property [ <default> protected $_handlerSuffix ] + Property [ <default> protected $_defaultHandler ] + Property [ <default> protected $_defaultAction ] + } + + - Methods [38] { + Method [ <internal:phalcon, prototype Phalcon\Mvc\DispatcherInterface> public method setControllerSuffix ] { + + - Parameters [1] { + Parameter #0 [ <required> $controllerSuffix ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\DispatcherInterface> public method setDefaultController ] { + + - Parameters [1] { + Parameter #0 [ <required> $controllerName ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\DispatcherInterface> public method setControllerName ] { + + - Parameters [2] { + Parameter #0 [ <required> $controllerName ] + Parameter #1 [ <optional> $isExact ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\DispatcherInterface> public method getControllerName ] { + } + + Method [ <internal:phalcon> protected method _throwDispatchException ] { + } + + Method [ <internal:phalcon> protected method _handleException ] { + } + + Method [ <internal:phalcon> public method getControllerClass ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\DispatcherInterface> public method getLastController ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\DispatcherInterface> public method getActiveController ] { + } + + Method [ <internal:phalcon> public method getPreviousControllerName ] { + } + + Method [ <internal:phalcon> public method getPreviousActionName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, ctor> public method __construct ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method setActionSuffix ] { + + - Parameters [1] { + Parameter #0 [ <required> $actionSuffix ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher> public method setModuleName ] { + + - Parameters [1] { + Parameter #0 [ <required> $moduleName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher> public method getModuleName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher> public method setNamespaceName ] { + + - Parameters [1] { + Parameter #0 [ <required> $namespaceName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher> public method getNamespaceName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method setDefaultNamespace ] { + + - Parameters [1] { + Parameter #0 [ <required> $namespace ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher> public method getDefaultNamespace ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method setDefaultAction ] { + + - Parameters [1] { + Parameter #0 [ <required> $actionName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method setActionName ] { + + - Parameters [1] { + Parameter #0 [ <required> $actionName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method getActionName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method setParams ] { + + - Parameters [1] { + Parameter #0 [ <required> $params ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method getParams ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method setParam ] { + + - Parameters [2] { + Parameter #0 [ <required> $param ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method getParam ] { + + - Parameters [2] { + Parameter #0 [ <required> $param ] + Parameter #1 [ <optional> $filters ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher> public method getActiveMethod ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method isFinished ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher> public method setReturnedValue ] { + + - Parameters [1] { + Parameter #0 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method getReturnedValue ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method dispatch ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher, prototype Phalcon\DispatcherInterface> public method forward ] { + + - Parameters [1] { + Parameter #0 [ <required> $forward ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher> public method wasForwarded ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Dispatcher> public method getHandlerClass ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Row implements ArrayAccess, Countable, Phalcon\Mvc\Model\ResultInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [7] { + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ResultInterface> public method setDirtyState ] { + + - Parameters [1] { + Parameter #0 [ <required> $dirtyState ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $index ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $index ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $index ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $offset ] + } + } + + Method [ <internal:phalcon> public method toArray ] { + } + + Method [ <internal:phalcon, prototype Countable> public method count ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Query implements Phalcon\Mvc\Model\QueryInterface, Phalcon\DI\InjectionAwareInterface ] { + + - Constants [4] { + Constant [ integer TYPE_SELECT ] { 309 } + Constant [ integer TYPE_INSERT ] { 306 } + Constant [ integer TYPE_UPDATE ] { 300 } + Constant [ integer TYPE_DELETE ] { 303 } + } + + - Static properties [1] { + Property [ protected static $_irPhqlCache ] + } + + - Static methods [0] { + } + + - Properties [19] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_manager ] + Property [ <default> protected $_metaData ] + Property [ <default> protected $_type ] + Property [ <default> protected $_phql ] + Property [ <default> protected $_ast ] + Property [ <default> protected $_intermediate ] + Property [ <default> protected $_models ] + Property [ <default> protected $_sqlAliases ] + Property [ <default> protected $_sqlAliasesModels ] + Property [ <default> protected $_sqlModelsAliases ] + Property [ <default> protected $_sqlAliasesModelsInstances ] + Property [ <default> protected $_sqlColumnAliases ] + Property [ <default> protected $_modelsInstances ] + Property [ <default> protected $_cache ] + Property [ <default> protected $_cacheOptions ] + Property [ <default> protected $_uniqueRow ] + Property [ <default> protected $_bindParams ] + Property [ <default> protected $_bindTypes ] + } + + - Methods [42] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $phql ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method setUniqueRow ] { + + - Parameters [1] { + Parameter #0 [ <required> $uniqueRow ] + } + } + + Method [ <internal:phalcon> public method getUniqueRow ] { + } + + Method [ <internal:phalcon> protected method _getQualified ] { + } + + Method [ <internal:phalcon> protected method _getCallArgument ] { + } + + Method [ <internal:phalcon> protected method _getFunctionCall ] { + } + + Method [ <internal:phalcon> protected method _getExpression ] { + } + + Method [ <internal:phalcon> protected method _getSelectColumn ] { + } + + Method [ <internal:phalcon> protected method _getTable ] { + } + + Method [ <internal:phalcon> protected method _getJoin ] { + } + + Method [ <internal:phalcon> protected method _getJoinType ] { + } + + Method [ <internal:phalcon> protected method _getSingleJoin ] { + } + + Method [ <internal:phalcon> protected method _getMultiJoin ] { + } + + Method [ <internal:phalcon> protected method _getJoins ] { + } + + Method [ <internal:phalcon> protected method _getOrderClause ] { + } + + Method [ <internal:phalcon> protected method _getGroupClause ] { + } + + Method [ <internal:phalcon> protected method _getLimitClause ] { + } + + Method [ <internal:phalcon> protected method _prepareSelect ] { + } + + Method [ <internal:phalcon> protected method _prepareInsert ] { + } + + Method [ <internal:phalcon> protected method _prepareUpdate ] { + } + + Method [ <internal:phalcon> protected method _prepareDelete ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\QueryInterface> public method parse ] { + } + + Method [ <internal:phalcon> public method cache ] { + + - Parameters [1] { + Parameter #0 [ <required> $cacheOptions ] + } + } + + Method [ <internal:phalcon> public method getCacheOptions ] { + } + + Method [ <internal:phalcon> public method getCache ] { + } + + Method [ <internal:phalcon> protected method _executeSelect ] { + } + + Method [ <internal:phalcon> protected method _executeInsert ] { + } + + Method [ <internal:phalcon> protected method _getRelatedRecords ] { + } + + Method [ <internal:phalcon> protected method _executeUpdate ] { + } + + Method [ <internal:phalcon> protected method _executeDelete ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\QueryInterface> public method execute ] { + + - Parameters [2] { + Parameter #0 [ <optional> $bindParams ] + Parameter #1 [ <optional> $bindTypes ] + } + } + + Method [ <internal:phalcon> public method getSingleResult ] { + + - Parameters [2] { + Parameter #0 [ <optional> $bindParams ] + Parameter #1 [ <optional> $bindTypes ] + } + } + + Method [ <internal:phalcon> public method setType ] { + + - Parameters [1] { + Parameter #0 [ <required> $type ] + } + } + + Method [ <internal:phalcon> public method getType ] { + } + + Method [ <internal:phalcon> public method setBindParams ] { + + - Parameters [1] { + Parameter #0 [ <required> $bindParams ] + } + } + + Method [ <internal:phalcon> public method getBindParams ] { + } + + Method [ <internal:phalcon> public method setBindTypes ] { + + - Parameters [1] { + Parameter #0 [ <required> $bindTypes ] + } + } + + Method [ <internal:phalcon> public method getBindTypes ] { + } + + Method [ <internal:phalcon> public method setIntermediate ] { + + - Parameters [1] { + Parameter #0 [ <required> $intermediate ] + } + } + + Method [ <internal:phalcon> public method getIntermediate ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Micro\Collection implements Phalcon\Mvc\Micro\CollectionInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $_prefix ] + Property [ <default> protected $_lazy ] + Property [ <default> protected $_handler ] + Property [ <default> protected $_handlers ] + } + + - Methods [15] { + Method [ <internal:phalcon, prototype Phalcon\Mvc\Micro\CollectionInterface> public method setPrefix ] { + + - Parameters [1] { + Parameter #0 [ <required> $prefix ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Micro\CollectionInterface> public method getPrefix ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Micro\CollectionInterface> public method getHandlers ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Micro\CollectionInterface> public method setHandler ] { + + - Parameters [2] { + Parameter #0 [ <required> $handler ] + Parameter #1 [ <optional> $lazy ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Micro\CollectionInterface> public method setLazy ] { + + - Parameters [1] { + Parameter #0 [ <required> $lazy ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Micro\CollectionInterface> public method isLazy ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Micro\CollectionInterface> public method getHandler ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Micro\CollectionInterface> public method map ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Micro\CollectionInterface> public method get ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Micro\CollectionInterface> public method post ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Micro\CollectionInterface> public method put ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Micro\CollectionInterface> public method patch ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Micro\CollectionInterface> public method head ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Micro\CollectionInterface> public method delete ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Micro\CollectionInterface> public method options ] { + + - Parameters [2] { + Parameter #0 [ <required> $routePattern ] + Parameter #1 [ <required> $handler ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Micro\Exception extends Phalcon\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Micro\LazyLoader ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_handler ] + Property [ <default> protected $_definition ] + } + + - Methods [2] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $definition ] + } + } + + Method [ <internal:phalcon> public method __call ] { + + - Parameters [2] { + Parameter #0 [ <required> $method ] + Parameter #1 [ <required> $arguments ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Criteria implements Phalcon\Mvc\Model\CriteriaInterface, Phalcon\DI\InjectionAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> static public method fromInput ] { + + - Parameters [3] { + Parameter #0 [ <required> $dependencyInjector ] + Parameter #1 [ <required> $modelName ] + Parameter #2 [ <required> $data ] + } + } + } + + - Properties [3] { + Property [ <default> protected $_model ] + Property [ <default> protected $_params ] + Property [ <default> protected $_hiddenParamNumber ] + } + + - Methods [33] { + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method setModelName ] { + + - Parameters [1] { + Parameter #0 [ <required> $modelName ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method getModelName ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method bind ] { + + - Parameters [1] { + Parameter #0 [ <required> $bindParams ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method bindTypes ] { + + - Parameters [1] { + Parameter #0 [ <required> $bindTypes ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method columns ] { + + - Parameters [1] { + Parameter #0 [ <required> $columns ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method join ] { + + - Parameters [4] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <optional> $conditions ] + Parameter #2 [ <optional> $alias ] + Parameter #3 [ <optional> $type ] + } + } + + Method [ <internal:phalcon> public method innerJoin ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <optional> $conditions ] + Parameter #2 [ <optional> $alias ] + } + } + + Method [ <internal:phalcon> public method leftJoin ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <optional> $conditions ] + Parameter #2 [ <optional> $alias ] + } + } + + Method [ <internal:phalcon> public method rightJoin ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <optional> $conditions ] + Parameter #2 [ <optional> $alias ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method where ] { + + - Parameters [1] { + Parameter #0 [ <required> $conditions ] + } + } + + Method [ <internal, deprecated:phalcon> public method addWhere ] { + + - Parameters [3] { + Parameter #0 [ <required> $conditions ] + Parameter #1 [ <optional> $bindParams ] + Parameter #2 [ <optional> $bindTypes ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method andWhere ] { + + - Parameters [3] { + Parameter #0 [ <required> $conditions ] + Parameter #1 [ <optional> $bindParams ] + Parameter #2 [ <optional> $bindTypes ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method orWhere ] { + + - Parameters [3] { + Parameter #0 [ <required> $conditions ] + Parameter #1 [ <optional> $bindParams ] + Parameter #2 [ <optional> $bindTypes ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method betweenWhere ] { + + - Parameters [3] { + Parameter #0 [ <required> $expr ] + Parameter #1 [ <required> $minimum ] + Parameter #2 [ <required> $maximum ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method notBetweenWhere ] { + + - Parameters [3] { + Parameter #0 [ <required> $expr ] + Parameter #1 [ <required> $minimum ] + Parameter #2 [ <required> $maximum ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method inWhere ] { + + - Parameters [2] { + Parameter #0 [ <required> $expr ] + Parameter #1 [ <required> $values ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method notInWhere ] { + + - Parameters [2] { + Parameter #0 [ <required> $expr ] + Parameter #1 [ <required> $values ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method conditions ] { + + - Parameters [1] { + Parameter #0 [ <required> $conditions ] + } + } + + Method [ <internal, deprecated:phalcon> public method order ] { + + - Parameters [1] { + Parameter #0 [ <required> $orderColumns ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method orderBy ] { + + - Parameters [1] { + Parameter #0 [ <required> $orderColumns ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method limit ] { + + - Parameters [2] { + Parameter #0 [ <required> $limit ] + Parameter #1 [ <optional> $offset ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method forUpdate ] { + + - Parameters [1] { + Parameter #0 [ <optional> $forUpdate ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method sharedLock ] { + + - Parameters [1] { + Parameter #0 [ <optional> $sharedLock ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method getWhere ] { + } + + Method [ <internal:phalcon> public method getColumns ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method getConditions ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method getLimit ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method getOrder ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method getParams ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\CriteriaInterface> public method execute ] { + } + + Method [ <internal:phalcon> public method cache ] { + + - Parameters [1] { + Parameter #0 [ <required> $option ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Manager implements Phalcon\Mvc\Model\ManagerInterface, Phalcon\DI\InjectionAwareInterface, Phalcon\Events\EventsAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [24] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_customEventsManager ] + Property [ <default> protected $_readConnectionServices ] + Property [ <default> protected $_writeConnectionServices ] + Property [ <default> protected $_aliases ] + Property [ <default> protected $_hasMany ] + Property [ <default> protected $_hasManySingle ] + Property [ <default> protected $_hasOne ] + Property [ <default> protected $_hasOneSingle ] + Property [ <default> protected $_belongsTo ] + Property [ <default> protected $_belongsToSingle ] + Property [ <default> protected $_hasManyToMany ] + Property [ <default> protected $_hasManyToManySingle ] + Property [ <default> protected $_initialized ] + Property [ <default> protected $_sources ] + Property [ <default> protected $_schemas ] + Property [ <default> protected $_behaviors ] + Property [ <default> protected $_lastInitialized ] + Property [ <default> protected $_lastQuery ] + Property [ <default> protected $_reusable ] + Property [ <default> protected $_keepSnapshots ] + Property [ <default> protected $_dynamicUpdate ] + Property [ <default> protected $_namespaceAliases ] + } + + - Methods [59] { + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method setCustomEventsManager ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon> public method getCustomEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method initialize ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method isInitialized ] { + + - Parameters [1] { + Parameter #0 [ <required> $modelName ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method getLastInitialized ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method load ] { + + - Parameters [2] { + Parameter #0 [ <required> $modelName ] + Parameter #1 [ <required> $newInstance ] + } + } + + Method [ <internal:phalcon> public method setModelSource ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $source ] + } + } + + Method [ <internal:phalcon> public method getModelSource ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> public method setModelSchema ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $schema ] + } + } + + Method [ <internal:phalcon> public method getModelSchema ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> public method setConnectionService ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $connectionService ] + } + } + + Method [ <internal:phalcon> public method setWriteConnectionService ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $connectionService ] + } + } + + Method [ <internal:phalcon> public method setReadConnectionService ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $connectionService ] + } + } + + Method [ <internal:phalcon> public method getWriteConnection ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> public method getReadConnection ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> public method getReadConnectionService ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> public method getWriteConnectionService ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method notifyEvent ] { + + - Parameters [2] { + Parameter #0 [ <required> $eventName ] + Parameter #1 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method missingMethod ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $eventName ] + Parameter #2 [ <required> $data ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method addBehavior ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $behavior ] + } + } + + Method [ <internal:phalcon> public method keepSnapshots ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $keepSnapshots ] + } + } + + Method [ <internal:phalcon> public method isKeepingSnapshots ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> public method useDynamicUpdate ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $dynamicUpdate ] + } + } + + Method [ <internal:phalcon> public method isUsingDynamicUpdate ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method addHasOne ] { + + - Parameters [5] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $fields ] + Parameter #2 [ <required> $referencedModel ] + Parameter #3 [ <required> $referencedFields ] + Parameter #4 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method addBelongsTo ] { + + - Parameters [5] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $fields ] + Parameter #2 [ <required> $referencedModel ] + Parameter #3 [ <required> $referencedFields ] + Parameter #4 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method addHasMany ] { + + - Parameters [5] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $fields ] + Parameter #2 [ <required> $referencedModel ] + Parameter #3 [ <required> $referencedFields ] + Parameter #4 [ <optional> $options ] + } + } + + Method [ <internal:phalcon> public method addHasManyToMany ] { + + - Parameters [8] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $fields ] + Parameter #2 [ <required> $intermediateModel ] + Parameter #3 [ <required> $intermediateFields ] + Parameter #4 [ <required> $intermediateReferencedFields ] + Parameter #5 [ <required> $referencedModel ] + Parameter #6 [ <required> $referencedFields ] + Parameter #7 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method existsBelongsTo ] { + + - Parameters [2] { + Parameter #0 [ <required> $modelName ] + Parameter #1 [ <required> $modelRelation ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method existsHasMany ] { + + - Parameters [2] { + Parameter #0 [ <required> $modelName ] + Parameter #1 [ <required> $modelRelation ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method existsHasOne ] { + + - Parameters [2] { + Parameter #0 [ <required> $modelName ] + Parameter #1 [ <required> $modelRelation ] + } + } + + Method [ <internal:phalcon> public method existsHasManyToMany ] { + + - Parameters [2] { + Parameter #0 [ <required> $modelName ] + Parameter #1 [ <required> $modelRelation ] + } + } + + Method [ <internal:phalcon> public method getRelationByAlias ] { + + - Parameters [2] { + Parameter #0 [ <required> $modelName ] + Parameter #1 [ <required> $alias ] + } + } + + Method [ <internal:phalcon> public method getRelationRecords ] { + + - Parameters [4] { + Parameter #0 [ <required> $relation ] + Parameter #1 [ <required> $method ] + Parameter #2 [ <required> $record ] + Parameter #3 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon> public method getReusableRecords ] { + + - Parameters [2] { + Parameter #0 [ <required> $modelName ] + Parameter #1 [ <required> $key ] + } + } + + Method [ <internal:phalcon> public method setReusableRecords ] { + + - Parameters [3] { + Parameter #0 [ <required> $modelName ] + Parameter #1 [ <required> $key ] + Parameter #2 [ <required> $records ] + } + } + + Method [ <internal:phalcon> public method clearReusableObjects ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method getBelongsToRecords ] { + + - Parameters [5] { + Parameter #0 [ <required> $method ] + Parameter #1 [ <required> $modelName ] + Parameter #2 [ <required> $modelRelation ] + Parameter #3 [ <required> $record ] + Parameter #4 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method getHasManyRecords ] { + + - Parameters [5] { + Parameter #0 [ <required> $method ] + Parameter #1 [ <required> $modelName ] + Parameter #2 [ <required> $modelRelation ] + Parameter #3 [ <required> $record ] + Parameter #4 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method getHasOneRecords ] { + + - Parameters [5] { + Parameter #0 [ <required> $method ] + Parameter #1 [ <required> $modelName ] + Parameter #2 [ <required> $modelRelation ] + Parameter #3 [ <required> $record ] + Parameter #4 [ <optional> $parameters ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method getBelongsTo ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method getHasMany ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method getHasOne ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> public method getHasManyToMany ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method getHasOneAndHasMany ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method getRelations ] { + + - Parameters [1] { + Parameter #0 [ <required> $modelName ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method getRelationsBetween ] { + + - Parameters [2] { + Parameter #0 [ <required> $first ] + Parameter #1 [ <required> $second ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method createQuery ] { + + - Parameters [1] { + Parameter #0 [ <required> $phql ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method executeQuery ] { + + - Parameters [2] { + Parameter #0 [ <required> $phql ] + Parameter #1 [ <optional> $placeholders ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method createBuilder ] { + + - Parameters [1] { + Parameter #0 [ <optional> $params ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\ManagerInterface> public method getLastQuery ] { + } + + Method [ <internal:phalcon> public method registerNamespaceAlias ] { + + - Parameters [2] { + Parameter #0 [ <required> $alias ] + Parameter #1 [ <required> $namespace ] + } + } + + Method [ <internal:phalcon> public method getNamespaceAlias ] { + + - Parameters [1] { + Parameter #0 [ <required> $alias ] + } + } + + Method [ <internal:phalcon> public method getNamespaceAliases ] { + } + + Method [ <internal:phalcon, dtor> public method __destruct ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Message implements Phalcon\Mvc\Model\MessageInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ <internal:phalcon> static public method __set_state ] { + + - Parameters [1] { + Parameter #0 [ <optional> array $properties ] + } + } + } + + - Properties [5] { + Property [ <default> protected $_type ] + Property [ <default> protected $_message ] + Property [ <default> protected $_field ] + Property [ <default> protected $_model ] + Property [ <default> protected $_code ] + } + + - Methods [12] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [3] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> $field ] + Parameter #2 [ <optional> $type ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MessageInterface> public method setType ] { + + - Parameters [1] { + Parameter #0 [ <required> $type ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MessageInterface> public method getType ] { + } + + Method [ <internal:phalcon> public method setCode ] { + + - Parameters [1] { + Parameter #0 [ <required> $code ] + } + } + + Method [ <internal:phalcon> public method getCode ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MessageInterface> public method setMessage ] { + + - Parameters [1] { + Parameter #0 [ <required> $message ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MessageInterface> public method getMessage ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MessageInterface> public method setField ] { + + - Parameters [1] { + Parameter #0 [ <required> $field ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\MessageInterface> public method getField ] { + } + + Method [ <internal:phalcon> public method setModel ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon> public method getModel ] { + } + + Method [ <internal:phalcon> public method __toString ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Relation implements Phalcon\Mvc\Model\RelationInterface ] { + + - Constants [8] { + Constant [ integer BELONGS_TO ] { 0 } + Constant [ integer HAS_ONE ] { 1 } + Constant [ integer HAS_MANY ] { 2 } + Constant [ integer HAS_ONE_THROUGH ] { 3 } + Constant [ integer HAS_MANY_THROUGH ] { 4 } + Constant [ integer NO_ACTION ] { 0 } + Constant [ integer ACTION_RESTRICT ] { 1 } + Constant [ integer ACTION_CASCADE ] { 2 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [8] { + Property [ <default> protected $_type ] + Property [ <default> protected $_referencedModel ] + Property [ <default> protected $_fields ] + Property [ <default> protected $_referencedFields ] + Property [ <default> protected $_intermediateModel ] + Property [ <default> protected $_intermediateFields ] + Property [ <default> protected $_intermediateReferencedFields ] + Property [ <default> protected $_options ] + } + + - Methods [14] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [5] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $referencedModel ] + Parameter #2 [ <required> $fields ] + Parameter #3 [ <required> $referencedFields ] + Parameter #4 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\RelationInterface> public method setIntermediateRelation ] { + + - Parameters [3] { + Parameter #0 [ <required> $intermediateFields ] + Parameter #1 [ <required> $intermediateModel ] + Parameter #2 [ <required> $intermediateReferencedFields ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\RelationInterface> public method getType ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\RelationInterface> public method getReferencedModel ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\RelationInterface> public method getFields ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\RelationInterface> public method getReferencedFields ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\RelationInterface> public method getOptions ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\RelationInterface> public method isForeignKey ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\RelationInterface> public method getForeignKey ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\RelationInterface> public method isThrough ] { + } + + Method [ <internal:phalcon> public method isReusable ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\RelationInterface> public method getIntermediateFields ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\RelationInterface> public method getIntermediateModel ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\RelationInterface> public method getIntermediateReferencedFields ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Transaction implements Phalcon\Mvc\Model\TransactionInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [7] { + Property [ <default> protected $_connection ] + Property [ <default> protected $_activeTransaction ] + Property [ <default> protected $_isNewTransaction ] + Property [ <default> protected $_rollbackOnAbort ] + Property [ <default> protected $_manager ] + Property [ <default> protected $_messages ] + Property [ <default> protected $_rollbackRecord ] + } + + - Methods [12] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [3] { + Parameter #0 [ <required> $dependencyInjector ] + Parameter #1 [ <optional> $autoBegin ] + Parameter #2 [ <optional> $service ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\TransactionInterface> public method setTransactionManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $manager ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\TransactionInterface> public method begin ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\TransactionInterface> public method commit ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\TransactionInterface> public method rollback ] { + + - Parameters [2] { + Parameter #0 [ <optional> $rollbackMessage ] + Parameter #1 [ <optional> $rollbackRecord ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\TransactionInterface> public method getConnection ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\TransactionInterface> public method setIsNewTransaction ] { + + - Parameters [1] { + Parameter #0 [ <required> $isNew ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\TransactionInterface> public method setRollbackOnAbort ] { + + - Parameters [1] { + Parameter #0 [ <required> $rollbackOnAbort ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\TransactionInterface> public method isManaged ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\TransactionInterface> public method getMessages ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\TransactionInterface> public method isValid ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\TransactionInterface> public method setRollbackedRecord ] { + + - Parameters [1] { + Parameter #0 [ <required> $record ] + } + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Mvc\Model\Query\Lang ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ <internal:phalcon> static public method parsePHQL ] { + + - Parameters [1] { + Parameter #0 [ <required> $phql ] + } + } + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Validator\Url extends Phalcon\Mvc\Model\Validator implements Phalcon\Mvc\Model\ValidatorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_options ] + Property [ <default> protected $_messages ] + } + + - Methods [7] { + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\ValidatorInterface, prototype Phalcon\Mvc\Model\ValidatorInterface> public method validate ] { + + - Parameters [1] { + Parameter #0 [ <required> $record ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> protected method appendMessage ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator, prototype Phalcon\Mvc\Model\ValidatorInterface> public method getMessages ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method getOptions ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method getOption ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method isSetOption ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Query\Status implements Phalcon\Mvc\Model\Query\StatusInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_success ] + Property [ <default> protected $_model ] + } + + - Methods [4] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $success ] + Parameter #1 [ <required> $model ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\StatusInterface> public method getModel ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\StatusInterface> public method getMessages ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\StatusInterface> public method success ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\MetaData\Apc extends Phalcon\Mvc\Model\MetaData implements Phalcon\Mvc\Model\MetaDataInterface, Phalcon\DI\InjectionAwareInterface ] { + + - Constants [14] { + Constant [ integer MODELS_ATTRIBUTES ] { 0 } + Constant [ integer MODELS_PRIMARY_KEY ] { 1 } + Constant [ integer MODELS_NON_PRIMARY_KEY ] { 2 } + Constant [ integer MODELS_NOT_NULL ] { 3 } + Constant [ integer MODELS_DATA_TYPES ] { 4 } + Constant [ integer MODELS_DATA_TYPES_NUMERIC ] { 5 } + Constant [ integer MODELS_DATE_AT ] { 6 } + Constant [ integer MODELS_DATE_IN ] { 7 } + Constant [ integer MODELS_IDENTITY_COLUMN ] { 8 } + Constant [ integer MODELS_DATA_TYPES_BIND ] { 9 } + Constant [ integer MODELS_AUTOMATIC_DEFAULT_INSERT ] { 10 } + Constant [ integer MODELS_AUTOMATIC_DEFAULT_UPDATE ] { 11 } + Constant [ integer MODELS_COLUMN_MAP ] { 0 } + Constant [ integer MODELS_REVERSE_COLUMN_MAP ] { 1 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [6] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_strategy ] + Property [ <default> protected $_metaData ] + Property [ <default> protected $_columnMap ] + Property [ <default> protected $_prefix ] + Property [ <default> protected $_ttl ] + } + + - Methods [30] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\MetaDataInterface, prototype Phalcon\Mvc\Model\MetaDataInterface> public method read ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\MetaDataInterface, prototype Phalcon\Mvc\Model\MetaDataInterface> public method write ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $data ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method reset ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData> protected method _initialize ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method setStrategy ] { + + - Parameters [1] { + Parameter #0 [ <required> $strategy ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getStrategy ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readMetaData ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readMetaDataIndex ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method writeMetaDataIndex ] { + + - Parameters [4] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $index ] + Parameter #2 [ <required> $data ] + Parameter #3 [ <required> $replace ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readColumnMap ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readColumnMapIndex ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getPrimaryKeyAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getNonPrimaryKeyAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getNotNullAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getDataTypes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getDataTypesNumeric ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getIdentityField ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getBindTypes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getAutomaticCreateAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getAutomaticUpdateAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method setAutomaticCreateAttributes ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $attributes ] + Parameter #2 [ <required> $replace ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method setAutomaticUpdateAttributes ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $attributes ] + Parameter #2 [ <required> $replace ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getColumnMap ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getReverseColumnMap ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method hasAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $attribute ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method isEmpty ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\MetaData\Files extends Phalcon\Mvc\Model\MetaData implements Phalcon\Mvc\Model\MetaDataInterface, Phalcon\DI\InjectionAwareInterface ] { + + - Constants [14] { + Constant [ integer MODELS_ATTRIBUTES ] { 0 } + Constant [ integer MODELS_PRIMARY_KEY ] { 1 } + Constant [ integer MODELS_NON_PRIMARY_KEY ] { 2 } + Constant [ integer MODELS_NOT_NULL ] { 3 } + Constant [ integer MODELS_DATA_TYPES ] { 4 } + Constant [ integer MODELS_DATA_TYPES_NUMERIC ] { 5 } + Constant [ integer MODELS_DATE_AT ] { 6 } + Constant [ integer MODELS_DATE_IN ] { 7 } + Constant [ integer MODELS_IDENTITY_COLUMN ] { 8 } + Constant [ integer MODELS_DATA_TYPES_BIND ] { 9 } + Constant [ integer MODELS_AUTOMATIC_DEFAULT_INSERT ] { 10 } + Constant [ integer MODELS_AUTOMATIC_DEFAULT_UPDATE ] { 11 } + Constant [ integer MODELS_COLUMN_MAP ] { 0 } + Constant [ integer MODELS_REVERSE_COLUMN_MAP ] { 1 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [5] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_strategy ] + Property [ <default> protected $_metaData ] + Property [ <default> protected $_columnMap ] + Property [ <default> protected $_metaDataDir ] + } + + - Methods [30] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\MetaDataInterface, prototype Phalcon\Mvc\Model\MetaDataInterface> public method read ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\MetaDataInterface, prototype Phalcon\Mvc\Model\MetaDataInterface> public method write ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $data ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method reset ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData> protected method _initialize ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method setStrategy ] { + + - Parameters [1] { + Parameter #0 [ <required> $strategy ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getStrategy ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readMetaData ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readMetaDataIndex ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method writeMetaDataIndex ] { + + - Parameters [4] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $index ] + Parameter #2 [ <required> $data ] + Parameter #3 [ <required> $replace ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readColumnMap ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readColumnMapIndex ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getPrimaryKeyAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getNonPrimaryKeyAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getNotNullAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getDataTypes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getDataTypesNumeric ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getIdentityField ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getBindTypes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getAutomaticCreateAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getAutomaticUpdateAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method setAutomaticCreateAttributes ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $attributes ] + Parameter #2 [ <required> $replace ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method setAutomaticUpdateAttributes ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $attributes ] + Parameter #2 [ <required> $replace ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getColumnMap ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getReverseColumnMap ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method hasAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $attribute ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method isEmpty ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Query\Builder implements Phalcon\Mvc\Model\Query\BuilderInterface, Phalcon\DI\InjectionAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [16] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_columns ] + Property [ <default> protected $_models ] + Property [ <default> protected $_joins ] + Property [ <default> protected $_conditions ] + Property [ <default> protected $_group ] + Property [ <default> protected $_having ] + Property [ <default> protected $_order ] + Property [ <default> protected $_limit ] + Property [ <default> protected $_offset ] + Property [ <default> protected $_forUpdate ] + Property [ <default> protected $_sharedLock ] + Property [ <default> protected $_bindParams ] + Property [ <default> protected $_bindTypes ] + Property [ <default> protected $_distinct ] + Property [ <default> protected $_hiddenParamNumber ] + } + + - Methods [34] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $params ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method distinct ] { + + - Parameters [1] { + Parameter #0 [ <required> $distinct ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method getDistinct ] { + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method columns ] { + + - Parameters [1] { + Parameter #0 [ <required> $columns ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method getColumns ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method from ] { + + - Parameters [1] { + Parameter #0 [ <required> $models ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method addFrom ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <optional> $alias ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method getFrom ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method join ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <optional> $conditions ] + Parameter #2 [ <optional> $alias ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method innerJoin ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <optional> $conditions ] + Parameter #2 [ <optional> $alias ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method leftJoin ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <optional> $conditions ] + Parameter #2 [ <optional> $alias ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method rightJoin ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <optional> $conditions ] + Parameter #2 [ <optional> $alias ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method where ] { + + - Parameters [3] { + Parameter #0 [ <required> $conditions ] + Parameter #1 [ <optional> $bindParams ] + Parameter #2 [ <optional> $bindTypes ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method andWhere ] { + + - Parameters [3] { + Parameter #0 [ <required> $conditions ] + Parameter #1 [ <optional> $bindParams ] + Parameter #2 [ <optional> $bindTypes ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method orWhere ] { + + - Parameters [3] { + Parameter #0 [ <required> $conditions ] + Parameter #1 [ <optional> $bindParams ] + Parameter #2 [ <optional> $bindTypes ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method betweenWhere ] { + + - Parameters [3] { + Parameter #0 [ <required> $expr ] + Parameter #1 [ <required> $minimum ] + Parameter #2 [ <required> $maximum ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method notBetweenWhere ] { + + - Parameters [3] { + Parameter #0 [ <required> $expr ] + Parameter #1 [ <required> $minimum ] + Parameter #2 [ <required> $maximum ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method inWhere ] { + + - Parameters [2] { + Parameter #0 [ <required> $expr ] + Parameter #1 [ <required> $values ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method notInWhere ] { + + - Parameters [2] { + Parameter #0 [ <required> $expr ] + Parameter #1 [ <required> $values ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method getWhere ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method orderBy ] { + + - Parameters [1] { + Parameter #0 [ <required> $orderBy ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method getOrderBy ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method having ] { + + - Parameters [1] { + Parameter #0 [ <required> $having ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method getHaving ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method limit ] { + + - Parameters [2] { + Parameter #0 [ <required> $limit ] + Parameter #1 [ <optional> $offset ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method getLimit ] { + } + + Method [ <internal:phalcon> public method offset ] { + + - Parameters [1] { + Parameter #0 [ <required> $offset ] + } + } + + Method [ <internal:phalcon> public method getOffset ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method groupBy ] { + + - Parameters [1] { + Parameter #0 [ <required> $group ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method getGroupBy ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method getPhql ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Query\BuilderInterface> public method getQuery ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Validator\Regex extends Phalcon\Mvc\Model\Validator implements Phalcon\Mvc\Model\ValidatorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_options ] + Property [ <default> protected $_messages ] + } + + - Methods [7] { + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\ValidatorInterface, prototype Phalcon\Mvc\Model\ValidatorInterface> public method validate ] { + + - Parameters [1] { + Parameter #0 [ <required> $record ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> protected method appendMessage ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator, prototype Phalcon\Mvc\Model\ValidatorInterface> public method getMessages ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method getOptions ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method getOption ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method isSetOption ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\ValidationFailed extends Phalcon\Mvc\Model\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [6] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + Property [ <default> protected $_model ] + Property [ <default> protected $_messages ] + } + + - Methods [11] { + Method [ <internal:phalcon, overwrites Exception, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $validationMessages ] + } + } + + Method [ <internal:phalcon> public method getMessages ] { + } + + Method [ <internal:phalcon> public method getModel ] { + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> <iterateable> class Phalcon\Mvc\Model\Resultset\Simple extends Phalcon\Mvc\Model\Resultset implements Serializable, ArrayAccess, Countable, SeekableIterator, Traversable, Iterator, Phalcon\Mvc\Model\ResultsetInterface ] { + + - Constants [5] { + Constant [ integer TYPE_RESULT_FULL ] { 0 } + Constant [ integer TYPE_RESULT_PARTIAL ] { 1 } + Constant [ integer HYDRATE_RECORDS ] { 0 } + Constant [ integer HYDRATE_OBJECTS ] { 2 } + Constant [ integer HYDRATE_ARRAYS ] { 1 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [13] { + Property [ <default> protected $_type ] + Property [ <default> protected $_result ] + Property [ <default> protected $_cache ] + Property [ <default> protected $_isFresh ] + Property [ <default> protected $_pointer ] + Property [ <default> protected $_count ] + Property [ <default> protected $_activeRow ] + Property [ <default> protected $_rows ] + Property [ <default> protected $_errorMessages ] + Property [ <default> protected $_hydrateMode ] + Property [ <default> protected $_model ] + Property [ <default> protected $_columnMap ] + Property [ <default> protected $_keepSnapshots ] + } + + - Methods [26] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [5] { + Parameter #0 [ <required> $columnMap ] + Parameter #1 [ <required> $model ] + Parameter #2 [ <required> $result ] + Parameter #3 [ <optional> $cache ] + Parameter #4 [ <optional> $keepSnapshots ] + } + } + + Method [ <internal:phalcon, overwrites Iterator, prototype Iterator> public method valid ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\ResultsetInterface, prototype Phalcon\Mvc\Model\ResultsetInterface> public method toArray ] { + + - Parameters [1] { + Parameter #0 [ <optional> $renameColumns ] + } + } + + Method [ <internal:phalcon, overwrites Serializable, prototype Serializable> public method serialize ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, overwrites Serializable, prototype Serializable> public method unserialize ] { + + - Parameters [1] { + Parameter #0 [ <optional> $serialized ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype Iterator> public method next ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype Iterator> public method key ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype Iterator> public method rewind ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype SeekableIterator> public method seek ] { + + - Parameters [1] { + Parameter #0 [ <required> $position ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype Countable> public method count ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype ArrayAccess> public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype Phalcon\Mvc\Model\ResultsetInterface> public method getType ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype Phalcon\Mvc\Model\ResultsetInterface> public method getFirst ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype Phalcon\Mvc\Model\ResultsetInterface> public method getLast ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype Phalcon\Mvc\Model\ResultsetInterface> public method setIsFresh ] { + + - Parameters [1] { + Parameter #0 [ <required> $isFresh ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype Phalcon\Mvc\Model\ResultsetInterface> public method isFresh ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset> public method setHydrateMode ] { + + - Parameters [1] { + Parameter #0 [ <required> $hydrateMode ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset> public method getHydrateMode ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype Phalcon\Mvc\Model\ResultsetInterface> public method getCache ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype Iterator> public method current ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset> public method getMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset> public method delete ] { + + - Parameters [1] { + Parameter #0 [ <optional> $conditionCallback ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset> public method filter ] { + + - Parameters [1] { + Parameter #0 [ <required> $filter ] + } + } + } + } + + Class [ <internal:phalcon> <iterateable> class Phalcon\Mvc\Model\Resultset\Complex extends Phalcon\Mvc\Model\Resultset implements Serializable, ArrayAccess, Countable, SeekableIterator, Traversable, Iterator, Phalcon\Mvc\Model\ResultsetInterface ] { + + - Constants [5] { + Constant [ integer TYPE_RESULT_FULL ] { 0 } + Constant [ integer TYPE_RESULT_PARTIAL ] { 1 } + Constant [ integer HYDRATE_RECORDS ] { 0 } + Constant [ integer HYDRATE_OBJECTS ] { 2 } + Constant [ integer HYDRATE_ARRAYS ] { 1 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [11] { + Property [ <default> protected $_type ] + Property [ <default> protected $_result ] + Property [ <default> protected $_cache ] + Property [ <default> protected $_isFresh ] + Property [ <default> protected $_pointer ] + Property [ <default> protected $_count ] + Property [ <default> protected $_activeRow ] + Property [ <default> protected $_rows ] + Property [ <default> protected $_errorMessages ] + Property [ <default> protected $_hydrateMode ] + Property [ <default> protected $_columnTypes ] + } + + - Methods [26] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [3] { + Parameter #0 [ <required> $columnsTypes ] + Parameter #1 [ <required> $result ] + Parameter #2 [ <optional> $cache ] + } + } + + Method [ <internal:phalcon, overwrites Iterator, prototype Iterator> public method valid ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\ResultsetInterface, prototype Phalcon\Mvc\Model\ResultsetInterface> public method toArray ] { + } + + Method [ <internal:phalcon, overwrites Serializable, prototype Serializable> public method serialize ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, overwrites Serializable, prototype Serializable> public method unserialize ] { + + - Parameters [1] { + Parameter #0 [ <optional> $serialized ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype Iterator> public method next ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype Iterator> public method key ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype Iterator> public method rewind ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype SeekableIterator> public method seek ] { + + - Parameters [1] { + Parameter #0 [ <required> $position ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype Countable> public method count ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype ArrayAccess> public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype Phalcon\Mvc\Model\ResultsetInterface> public method getType ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype Phalcon\Mvc\Model\ResultsetInterface> public method getFirst ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype Phalcon\Mvc\Model\ResultsetInterface> public method getLast ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype Phalcon\Mvc\Model\ResultsetInterface> public method setIsFresh ] { + + - Parameters [1] { + Parameter #0 [ <required> $isFresh ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype Phalcon\Mvc\Model\ResultsetInterface> public method isFresh ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset> public method setHydrateMode ] { + + - Parameters [1] { + Parameter #0 [ <required> $hydrateMode ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset> public method getHydrateMode ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype Phalcon\Mvc\Model\ResultsetInterface> public method getCache ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset, prototype Iterator> public method current ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset> public method getMessages ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset> public method delete ] { + + - Parameters [1] { + Parameter #0 [ <optional> $conditionCallback ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Resultset> public method filter ] { + + - Parameters [1] { + Parameter #0 [ <required> $filter ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\MetaData\Memory extends Phalcon\Mvc\Model\MetaData implements Phalcon\Mvc\Model\MetaDataInterface, Phalcon\DI\InjectionAwareInterface ] { + + - Constants [14] { + Constant [ integer MODELS_ATTRIBUTES ] { 0 } + Constant [ integer MODELS_PRIMARY_KEY ] { 1 } + Constant [ integer MODELS_NON_PRIMARY_KEY ] { 2 } + Constant [ integer MODELS_NOT_NULL ] { 3 } + Constant [ integer MODELS_DATA_TYPES ] { 4 } + Constant [ integer MODELS_DATA_TYPES_NUMERIC ] { 5 } + Constant [ integer MODELS_DATE_AT ] { 6 } + Constant [ integer MODELS_DATE_IN ] { 7 } + Constant [ integer MODELS_IDENTITY_COLUMN ] { 8 } + Constant [ integer MODELS_DATA_TYPES_BIND ] { 9 } + Constant [ integer MODELS_AUTOMATIC_DEFAULT_INSERT ] { 10 } + Constant [ integer MODELS_AUTOMATIC_DEFAULT_UPDATE ] { 11 } + Constant [ integer MODELS_COLUMN_MAP ] { 0 } + Constant [ integer MODELS_REVERSE_COLUMN_MAP ] { 1 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_strategy ] + Property [ <default> protected $_metaData ] + Property [ <default> protected $_columnMap ] + } + + - Methods [30] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\MetaDataInterface, prototype Phalcon\Mvc\Model\MetaDataInterface> public method read ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\MetaDataInterface, prototype Phalcon\Mvc\Model\MetaDataInterface> public method write ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $data ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData> protected method _initialize ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method setStrategy ] { + + - Parameters [1] { + Parameter #0 [ <required> $strategy ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getStrategy ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readMetaData ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readMetaDataIndex ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method writeMetaDataIndex ] { + + - Parameters [4] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $index ] + Parameter #2 [ <required> $data ] + Parameter #3 [ <required> $replace ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readColumnMap ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readColumnMapIndex ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getPrimaryKeyAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getNonPrimaryKeyAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getNotNullAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getDataTypes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getDataTypesNumeric ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getIdentityField ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getBindTypes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getAutomaticCreateAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getAutomaticUpdateAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method setAutomaticCreateAttributes ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $attributes ] + Parameter #2 [ <required> $replace ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method setAutomaticUpdateAttributes ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $attributes ] + Parameter #2 [ <required> $replace ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getColumnMap ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getReverseColumnMap ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method hasAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $attribute ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method isEmpty ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method reset ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\MetaData\Xcache extends Phalcon\Mvc\Model\MetaData implements Phalcon\Mvc\Model\MetaDataInterface, Phalcon\DI\InjectionAwareInterface ] { + + - Constants [14] { + Constant [ integer MODELS_ATTRIBUTES ] { 0 } + Constant [ integer MODELS_PRIMARY_KEY ] { 1 } + Constant [ integer MODELS_NON_PRIMARY_KEY ] { 2 } + Constant [ integer MODELS_NOT_NULL ] { 3 } + Constant [ integer MODELS_DATA_TYPES ] { 4 } + Constant [ integer MODELS_DATA_TYPES_NUMERIC ] { 5 } + Constant [ integer MODELS_DATE_AT ] { 6 } + Constant [ integer MODELS_DATE_IN ] { 7 } + Constant [ integer MODELS_IDENTITY_COLUMN ] { 8 } + Constant [ integer MODELS_DATA_TYPES_BIND ] { 9 } + Constant [ integer MODELS_AUTOMATIC_DEFAULT_INSERT ] { 10 } + Constant [ integer MODELS_AUTOMATIC_DEFAULT_UPDATE ] { 11 } + Constant [ integer MODELS_COLUMN_MAP ] { 0 } + Constant [ integer MODELS_REVERSE_COLUMN_MAP ] { 1 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [6] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_strategy ] + Property [ <default> protected $_metaData ] + Property [ <default> protected $_columnMap ] + Property [ <default> protected $_prefix ] + Property [ <default> protected $_ttl ] + } + + - Methods [30] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\MetaDataInterface, prototype Phalcon\Mvc\Model\MetaDataInterface> public method read ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\MetaDataInterface, prototype Phalcon\Mvc\Model\MetaDataInterface> public method write ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $data ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method reset ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData> protected method _initialize ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method setStrategy ] { + + - Parameters [1] { + Parameter #0 [ <required> $strategy ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getStrategy ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readMetaData ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readMetaDataIndex ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method writeMetaDataIndex ] { + + - Parameters [4] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $index ] + Parameter #2 [ <required> $data ] + Parameter #3 [ <required> $replace ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readColumnMap ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readColumnMapIndex ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getPrimaryKeyAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getNonPrimaryKeyAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getNotNullAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getDataTypes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getDataTypesNumeric ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getIdentityField ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getBindTypes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getAutomaticCreateAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getAutomaticUpdateAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method setAutomaticCreateAttributes ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $attributes ] + Parameter #2 [ <required> $replace ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method setAutomaticUpdateAttributes ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $attributes ] + Parameter #2 [ <required> $replace ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getColumnMap ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getReverseColumnMap ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method hasAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $attribute ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method isEmpty ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Validator\Email extends Phalcon\Mvc\Model\Validator implements Phalcon\Mvc\Model\ValidatorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_options ] + Property [ <default> protected $_messages ] + } + + - Methods [7] { + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\ValidatorInterface, prototype Phalcon\Mvc\Model\ValidatorInterface> public method validate ] { + + - Parameters [1] { + Parameter #0 [ <required> $record ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> protected method appendMessage ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator, prototype Phalcon\Mvc\Model\ValidatorInterface> public method getMessages ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method getOptions ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method getOption ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method isSetOption ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\MetaData\Session extends Phalcon\Mvc\Model\MetaData implements Phalcon\Mvc\Model\MetaDataInterface, Phalcon\DI\InjectionAwareInterface ] { + + - Constants [14] { + Constant [ integer MODELS_ATTRIBUTES ] { 0 } + Constant [ integer MODELS_PRIMARY_KEY ] { 1 } + Constant [ integer MODELS_NON_PRIMARY_KEY ] { 2 } + Constant [ integer MODELS_NOT_NULL ] { 3 } + Constant [ integer MODELS_DATA_TYPES ] { 4 } + Constant [ integer MODELS_DATA_TYPES_NUMERIC ] { 5 } + Constant [ integer MODELS_DATE_AT ] { 6 } + Constant [ integer MODELS_DATE_IN ] { 7 } + Constant [ integer MODELS_IDENTITY_COLUMN ] { 8 } + Constant [ integer MODELS_DATA_TYPES_BIND ] { 9 } + Constant [ integer MODELS_AUTOMATIC_DEFAULT_INSERT ] { 10 } + Constant [ integer MODELS_AUTOMATIC_DEFAULT_UPDATE ] { 11 } + Constant [ integer MODELS_COLUMN_MAP ] { 0 } + Constant [ integer MODELS_REVERSE_COLUMN_MAP ] { 1 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [5] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_strategy ] + Property [ <default> protected $_metaData ] + Property [ <default> protected $_columnMap ] + Property [ <default> protected $_prefix ] + } + + - Methods [30] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\MetaDataInterface, prototype Phalcon\Mvc\Model\MetaDataInterface> public method read ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\MetaDataInterface, prototype Phalcon\Mvc\Model\MetaDataInterface> public method write ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $data ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method reset ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData> protected method _initialize ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method setStrategy ] { + + - Parameters [1] { + Parameter #0 [ <required> $strategy ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getStrategy ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readMetaData ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readMetaDataIndex ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method writeMetaDataIndex ] { + + - Parameters [4] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $index ] + Parameter #2 [ <required> $data ] + Parameter #3 [ <required> $replace ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readColumnMap ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method readColumnMapIndex ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $index ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getPrimaryKeyAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getNonPrimaryKeyAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getNotNullAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getDataTypes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getDataTypesNumeric ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getIdentityField ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getBindTypes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getAutomaticCreateAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getAutomaticUpdateAttributes ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method setAutomaticCreateAttributes ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $attributes ] + Parameter #2 [ <required> $replace ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method setAutomaticUpdateAttributes ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $attributes ] + Parameter #2 [ <required> $replace ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getColumnMap ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method getReverseColumnMap ] { + + - Parameters [1] { + Parameter #0 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method hasAttribute ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $attribute ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\MetaData, prototype Phalcon\Mvc\Model\MetaDataInterface> public method isEmpty ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Validator\Uniqueness extends Phalcon\Mvc\Model\Validator implements Phalcon\Mvc\Model\ValidatorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_options ] + Property [ <default> protected $_messages ] + } + + - Methods [7] { + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\ValidatorInterface, prototype Phalcon\Mvc\Model\ValidatorInterface> public method validate ] { + + - Parameters [1] { + Parameter #0 [ <required> $record ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> protected method appendMessage ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator, prototype Phalcon\Mvc\Model\ValidatorInterface> public method getMessages ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method getOptions ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method getOption ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method isSetOption ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Validator\PresenceOf extends Phalcon\Mvc\Model\Validator implements Phalcon\Mvc\Model\ValidatorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_options ] + Property [ <default> protected $_messages ] + } + + - Methods [7] { + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\ValidatorInterface, prototype Phalcon\Mvc\Model\ValidatorInterface> public method validate ] { + + - Parameters [1] { + Parameter #0 [ <required> $record ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> protected method appendMessage ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator, prototype Phalcon\Mvc\Model\ValidatorInterface> public method getMessages ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method getOptions ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method getOption ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method isSetOption ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Transaction\Failed extends Phalcon\Mvc\Model\Transaction\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [5] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + Property [ <default> protected $_record ] + } + + - Methods [11] { + Method [ <internal:phalcon, overwrites Exception, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <required> $record ] + } + } + + Method [ <internal:phalcon> public method getRecordMessages ] { + } + + Method [ <internal:phalcon> public method getRecord ] { + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Behavior\SoftDelete extends Phalcon\Mvc\Model\Behavior implements Phalcon\Mvc\Model\BehaviorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_options ] + } + + - Methods [5] { + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\Behavior, prototype Phalcon\Mvc\Model\BehaviorInterface> public method notify ] { + + - Parameters [2] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Behavior, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Behavior> protected method mustTakeAction ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Behavior> protected method getOptions ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Behavior, prototype Phalcon\Mvc\Model\BehaviorInterface> public method missingMethod ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $method ] + Parameter #2 [ <optional> $arguments ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Transaction\Manager implements Phalcon\Mvc\Model\Transaction\ManagerInterface, Phalcon\DI\InjectionAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [6] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_initialized ] + Property [ <default> protected $_rollbackPendent ] + Property [ <default> protected $_number ] + Property [ <default> protected $_service ] + Property [ <default> protected $_transactions ] + } + + - Methods [17] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method setDbService ] { + + - Parameters [1] { + Parameter #0 [ <required> $service ] + } + } + + Method [ <internal:phalcon> public method getDbService ] { + } + + Method [ <internal:phalcon> public method setRollbackPendent ] { + + - Parameters [1] { + Parameter #0 [ <required> $rollbackPendent ] + } + } + + Method [ <internal:phalcon> public method getRollbackPendent ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Transaction\ManagerInterface> public method has ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Transaction\ManagerInterface> public method get ] { + + - Parameters [1] { + Parameter #0 [ <optional> $autoBegin ] + } + } + + Method [ <internal:phalcon> public method getOrCreateTransaction ] { + + - Parameters [1] { + Parameter #0 [ <optional> $autoBegin ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Transaction\ManagerInterface> public method rollbackPendent ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Transaction\ManagerInterface> public method commit ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Transaction\ManagerInterface> public method rollback ] { + + - Parameters [1] { + Parameter #0 [ <optional> $collect ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Transaction\ManagerInterface> public method notifyRollback ] { + + - Parameters [1] { + Parameter #0 [ <required> $transaction ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Transaction\ManagerInterface> public method notifyCommit ] { + + - Parameters [1] { + Parameter #0 [ <required> $transaction ] + } + } + + Method [ <internal:phalcon> protected method _collectTransaction ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Model\Transaction\ManagerInterface> public method collectTransactions ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Behavior\Timestampable extends Phalcon\Mvc\Model\Behavior implements Phalcon\Mvc\Model\BehaviorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ <default> protected $_options ] + } + + - Methods [5] { + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\Behavior, prototype Phalcon\Mvc\Model\BehaviorInterface> public method notify ] { + + - Parameters [2] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $model ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Behavior, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Behavior> protected method mustTakeAction ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Behavior> protected method getOptions ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Behavior, prototype Phalcon\Mvc\Model\BehaviorInterface> public method missingMethod ] { + + - Parameters [3] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $method ] + Parameter #2 [ <optional> $arguments ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\MetaData\Strategy\Annotations ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ <internal:phalcon> public method getMetaData ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon> public method getColumnMaps ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\MetaData\Strategy\Introspection ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ <internal:phalcon> public method getMetaData ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon> public method getColumnMaps ] { + + - Parameters [2] { + Parameter #0 [ <required> $model ] + Parameter #1 [ <required> $dependencyInjector ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Validator\Inclusionin extends Phalcon\Mvc\Model\Validator implements Phalcon\Mvc\Model\ValidatorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_options ] + Property [ <default> protected $_messages ] + } + + - Methods [7] { + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\ValidatorInterface, prototype Phalcon\Mvc\Model\ValidatorInterface> public method validate ] { + + - Parameters [1] { + Parameter #0 [ <required> $record ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> protected method appendMessage ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator, prototype Phalcon\Mvc\Model\ValidatorInterface> public method getMessages ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method getOptions ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method getOption ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method isSetOption ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Validator\Numericality extends Phalcon\Mvc\Model\Validator implements Phalcon\Mvc\Model\ValidatorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_options ] + Property [ <default> protected $_messages ] + } + + - Methods [7] { + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\ValidatorInterface, prototype Phalcon\Mvc\Model\ValidatorInterface> public method validate ] { + + - Parameters [1] { + Parameter #0 [ <required> $record ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> protected method appendMessage ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator, prototype Phalcon\Mvc\Model\ValidatorInterface> public method getMessages ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method getOptions ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method getOption ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method isSetOption ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Validator\Exclusionin extends Phalcon\Mvc\Model\Validator implements Phalcon\Mvc\Model\ValidatorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_options ] + Property [ <default> protected $_messages ] + } + + - Methods [7] { + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\ValidatorInterface, prototype Phalcon\Mvc\Model\ValidatorInterface> public method validate ] { + + - Parameters [1] { + Parameter #0 [ <required> $record ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> protected method appendMessage ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator, prototype Phalcon\Mvc\Model\ValidatorInterface> public method getMessages ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method getOptions ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method getOption ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method isSetOption ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Model\Validator\StringLength extends Phalcon\Mvc\Model\Validator implements Phalcon\Mvc\Model\ValidatorInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_options ] + Property [ <default> protected $_messages ] + } + + - Methods [7] { + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Model\ValidatorInterface, prototype Phalcon\Mvc\Model\ValidatorInterface> public method validate ] { + + - Parameters [1] { + Parameter #0 [ <required> $record ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> protected method appendMessage ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator, prototype Phalcon\Mvc\Model\ValidatorInterface> public method getMessages ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method getOptions ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method getOption ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Model\Validator> public method isSetOption ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Router\Route implements Phalcon\Mvc\Router\RouteInterface ] { + + - Constants [0] { + } + + - Static properties [1] { + Property [ protected static $_uniqueId ] + } + + - Static methods [1] { + Method [ <internal:phalcon, prototype Phalcon\Mvc\Router\RouteInterface> static public method reset ] { + } + } + + - Properties [10] { + Property [ <default> protected $_pattern ] + Property [ <default> protected $_compiledPattern ] + Property [ <default> protected $_paths ] + Property [ <default> protected $_methods ] + Property [ <default> protected $_hostname ] + Property [ <default> protected $_converters ] + Property [ <default> protected $_id ] + Property [ <default> protected $_name ] + Property [ <default> protected $_beforeMatch ] + Property [ <default> protected $_group ] + } + + - Methods [21] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [3] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + Parameter #2 [ <optional> $httpMethods ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Router\RouteInterface> public method compilePattern ] { + + - Parameters [1] { + Parameter #0 [ <required> $pattern ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Router\RouteInterface> public method via ] { + + - Parameters [1] { + Parameter #0 [ <required> $httpMethods ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Router\RouteInterface> public method reConfigure ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Router\RouteInterface> public method getName ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Router\RouteInterface> public method setName ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> public method beforeMatch ] { + + - Parameters [1] { + Parameter #0 [ <required> $callback ] + } + } + + Method [ <internal:phalcon> public method getBeforeMatch ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Router\RouteInterface> public method getRouteId ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Router\RouteInterface> public method getPattern ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Router\RouteInterface> public method getCompiledPattern ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Router\RouteInterface> public method getPaths ] { + } + + Method [ <internal:phalcon> public method getReversedPaths ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Router\RouteInterface> public method setHttpMethods ] { + + - Parameters [1] { + Parameter #0 [ <required> $httpMethods ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Mvc\Router\RouteInterface> public method getHttpMethods ] { + } + + Method [ <internal:phalcon> public method setHostname ] { + + - Parameters [1] { + Parameter #0 [ <required> $hostname ] + } + } + + Method [ <internal:phalcon> public method getHostname ] { + } + + Method [ <internal:phalcon> public method setGroup ] { + + - Parameters [1] { + Parameter #0 [ <required> $group ] + } + } + + Method [ <internal:phalcon> public method getGroup ] { + } + + Method [ <internal:phalcon> public method convert ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <required> $converter ] + } + } + + Method [ <internal:phalcon> public method getConverters ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Router\Group ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [7] { + Property [ <default> protected $_prefix ] + Property [ <default> protected $_hostname ] + Property [ <default> protected $_paths ] + Property [ <default> protected $_routes ] + Property [ <default> protected $_beforeMatch ] + Property [ <default> protected $_converters ] + Property [ <default> protected $_name ] + } + + - Methods [24] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon> public method setHostname ] { + + - Parameters [1] { + Parameter #0 [ <required> $hostname ] + } + } + + Method [ <internal:phalcon> public method getHostname ] { + } + + Method [ <internal:phalcon> public method setPrefix ] { + + - Parameters [1] { + Parameter #0 [ <required> $prefix ] + } + } + + Method [ <internal:phalcon> public method getPrefix ] { + } + + Method [ <internal:phalcon> public method beforeMatch ] { + + - Parameters [1] { + Parameter #0 [ <required> $beforeMatch ] + } + } + + Method [ <internal:phalcon> public method getBeforeMatch ] { + } + + Method [ <internal:phalcon> public method setPaths ] { + + - Parameters [1] { + Parameter #0 [ <required> $paths ] + } + } + + Method [ <internal:phalcon> public method getPaths ] { + } + + Method [ <internal:phalcon> public method getRoutes ] { + } + + Method [ <internal:phalcon> protected method _addRoute ] { + } + + Method [ <internal:phalcon> public method add ] { + + - Parameters [3] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + Parameter #2 [ <optional> $httpMethods ] + } + } + + Method [ <internal:phalcon> public method addGet ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon> public method addPost ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon> public method addPut ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon> public method addPatch ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon> public method addDelete ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon> public method addOptions ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon> public method addHead ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon> public method clear ] { + } + + Method [ <internal:phalcon> public method convert ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <required> $converter ] + } + } + + Method [ <internal:phalcon> public method getConverters ] { + } + + Method [ <internal:phalcon> public method setName ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon> public method getName ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\Router\Annotations extends Phalcon\Mvc\Router implements Phalcon\DI\InjectionAwareInterface, Phalcon\Mvc\RouterInterface ] { + + - Constants [2] { + Constant [ integer URI_SOURCE_GET_URL ] { 0 } + Constant [ integer URI_SOURCE_SERVER_REQUEST_URI ] { 1 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [25] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_uriSource ] + Property [ <default> protected $_namespace ] + Property [ <default> protected $_module ] + Property [ <default> protected $_controller ] + Property [ <default> protected $_action ] + Property [ <default> protected $_params ] + Property [ <default> protected $_routes ] + Property [ <default> protected $_routesNameLookup ] + Property [ <default> protected $_matchedRoute ] + Property [ <default> protected $_matches ] + Property [ <default> protected $_wasMatched ] + Property [ <default> protected $_defaultNamespace ] + Property [ <default> protected $_defaultModule ] + Property [ <default> protected $_defaultController ] + Property [ <default> protected $_defaultAction ] + Property [ <default> protected $_defaultParams ] + Property [ <default> protected $_removeExtraSlashes ] + Property [ <default> protected $_notFoundPaths ] + Property [ <default> protected $_isExactControllerName ] + Property [ <default> protected $_handlers ] + Property [ <default> protected $_processed ] + Property [ <default> protected $_controllerSuffix ] + Property [ <default> protected $_actionSuffix ] + Property [ <default> protected $_routePrefix ] + } + + - Methods [47] { + Method [ <internal:phalcon> public method addResource ] { + + - Parameters [2] { + Parameter #0 [ <required> $handler ] + Parameter #1 [ <optional> $prefix ] + } + } + + Method [ <internal:phalcon> public method addModuleResource ] { + + - Parameters [3] { + Parameter #0 [ <required> $module ] + Parameter #1 [ <required> $handler ] + Parameter #2 [ <optional> $prefix ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method handle ] { + + - Parameters [1] { + Parameter #0 [ <optional> $uri ] + } + } + + Method [ <internal:phalcon> public method processControllerAnnotation ] { + + - Parameters [2] { + Parameter #0 [ <required> $handler ] + Parameter #1 [ <required> $annotation ] + } + } + + Method [ <internal:phalcon> public method processActionAnnotation ] { + + - Parameters [5] { + Parameter #0 [ <required> $module ] + Parameter #1 [ <required> $namespace ] + Parameter #2 [ <required> $controller ] + Parameter #3 [ <required> $action ] + Parameter #4 [ <required> $annotation ] + } + } + + Method [ <internal:phalcon> public method setControllerSuffix ] { + + - Parameters [1] { + Parameter #0 [ <required> $controllerSuffix ] + } + } + + Method [ <internal:phalcon> public method setActionSuffix ] { + + - Parameters [1] { + Parameter #0 [ <required> $actionSuffix ] + } + } + + Method [ <internal:phalcon> public method getResources ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $defaultRoutes ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router> public method getRewriteUri ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router> public method setUriSource ] { + + - Parameters [1] { + Parameter #0 [ <required> $uriSource ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router> public method removeExtraSlashes ] { + + - Parameters [1] { + Parameter #0 [ <required> $remove ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router> public method setDefaultNamespace ] { + + - Parameters [1] { + Parameter #0 [ <required> $namespaceName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router> public method getDefaultNamespace ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method setDefaultModule ] { + + - Parameters [1] { + Parameter #0 [ <required> $moduleName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router> public method getDefaultModule ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method setDefaultController ] { + + - Parameters [1] { + Parameter #0 [ <required> $controllerName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router> public method getDefaultController ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method setDefaultAction ] { + + - Parameters [1] { + Parameter #0 [ <required> $actionName ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router> public method getDefaultAction ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method setDefaults ] { + + - Parameters [1] { + Parameter #0 [ <required> $defaults ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router> public method getDefaults ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method add ] { + + - Parameters [3] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + Parameter #2 [ <optional> $httpMethods ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method addGet ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method addPost ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method addPut ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method addPatch ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method addDelete ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method addOptions ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method addHead ] { + + - Parameters [2] { + Parameter #0 [ <required> $pattern ] + Parameter #1 [ <optional> $paths ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router> public method mount ] { + + - Parameters [1] { + Parameter #0 [ <required> $group ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router> public method notFound ] { + + - Parameters [1] { + Parameter #0 [ <required> $paths ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method clear ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router> public method getNamespaceName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method getModuleName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method getControllerName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method getActionName ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method getParams ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method getMatchedRoute ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method getMatches ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method wasMatched ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method getRoutes ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method getRouteById ] { + + - Parameters [1] { + Parameter #0 [ <required> $id ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method getRouteByName ] { + + - Parameters [1] { + Parameter #0 [ <required> $name ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\Router, prototype Phalcon\Mvc\RouterInterface> public method isExactControllerName ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\User\Module extends Phalcon\DI\Injectable implements Phalcon\Events\EventsAwareInterface, Phalcon\DI\InjectionAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_eventsManager ] + } + + - Methods [5] { + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable> public method __get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\User\Plugin extends Phalcon\DI\Injectable implements Phalcon\Events\EventsAwareInterface, Phalcon\DI\InjectionAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_eventsManager ] + } + + - Methods [5] { + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable> public method __get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\User\Component extends Phalcon\DI\Injectable implements Phalcon\Events\EventsAwareInterface, Phalcon\DI\InjectionAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_eventsManager ] + } + + - Methods [5] { + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable> public method __get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\View\Simple extends Phalcon\DI\Injectable implements Phalcon\Events\EventsAwareInterface, Phalcon\DI\InjectionAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [12] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_options ] + Property [ <default> protected $_viewsDir ] + Property [ <default> protected $_partialsDir ] + Property [ <default> protected $_viewParams ] + Property [ <default> protected $_engines ] + Property [ <default> protected $_registeredEngines ] + Property [ <default> protected $_activeRenderPath ] + Property [ <default> protected $_content ] + Property [ <default> protected $_cache ] + Property [ <default> protected $_cacheOptions ] + } + + - Methods [28] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon> public method setViewsDir ] { + + - Parameters [1] { + Parameter #0 [ <required> $viewsDir ] + } + } + + Method [ <internal:phalcon> public method getViewsDir ] { + } + + Method [ <internal:phalcon> public method registerEngines ] { + + - Parameters [1] { + Parameter #0 [ <required> $engines ] + } + } + + Method [ <internal:phalcon> public method getRegisteredEngines ] { + } + + Method [ <internal:phalcon> protected method _loadTemplateEngines ] { + } + + Method [ <internal:phalcon> protected method _internalRender ] { + } + + Method [ <internal:phalcon> public method render ] { + + - Parameters [2] { + Parameter #0 [ <required> $path ] + Parameter #1 [ <optional> $params ] + } + } + + Method [ <internal:phalcon> public method partial ] { + + - Parameters [2] { + Parameter #0 [ <required> $partialPath ] + Parameter #1 [ <optional> $params ] + } + } + + Method [ <internal:phalcon> public method setCacheOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon> public method getCacheOptions ] { + } + + Method [ <internal:phalcon> protected method _createCache ] { + } + + Method [ <internal:phalcon> public method getCache ] { + } + + Method [ <internal:phalcon> public method cache ] { + + - Parameters [1] { + Parameter #0 [ <optional> $options ] + } + } + + Method [ <internal:phalcon> public method setParamToView ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> public method setVars ] { + + - Parameters [2] { + Parameter #0 [ <required> $params ] + Parameter #1 [ <optional> $merge ] + } + } + + Method [ <internal:phalcon> public method setVar ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> public method getVar ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon> public method getParamsToView ] { + } + + Method [ <internal:phalcon> public method setContent ] { + + - Parameters [1] { + Parameter #0 [ <required> $content ] + } + } + + Method [ <internal:phalcon> public method getContent ] { + } + + Method [ <internal:phalcon> public method getActiveRenderPath ] { + } + + Method [ <internal:phalcon> public method __set ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\DI\Injectable, prototype Phalcon\DI\Injectable> public method __get ] { + + - Parameters [1] { + Parameter #0 [ <required> $key ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\View\Engine\Volt extends Phalcon\Mvc\View\Engine implements Phalcon\Mvc\View\EngineInterface, Phalcon\DI\InjectionAwareInterface, Phalcon\Events\EventsAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [5] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_view ] + Property [ <default> protected $_options ] + Property [ <default> protected $_compiler ] + } + + - Methods [18] { + Method [ <internal:phalcon> public method setOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon> public method getOptions ] { + } + + Method [ <internal:phalcon> public method getCompiler ] { + } + + Method [ <internal:phalcon, overwrites Phalcon\Mvc\View\EngineInterface, prototype Phalcon\Mvc\View\EngineInterface> public method render ] { + + - Parameters [3] { + Parameter #0 [ <required> $path ] + Parameter #1 [ <required> $params ] + Parameter #2 [ <optional> $mustClean ] + } + } + + Method [ <internal:phalcon> public method length ] { + + - Parameters [1] { + Parameter #0 [ <required> $item ] + } + } + + Method [ <internal:phalcon> public method isIncluded ] { + + - Parameters [2] { + Parameter #0 [ <required> $needle ] + Parameter #1 [ <required> $haystack ] + } + } + + Method [ <internal:phalcon> public method convertEncoding ] { + + - Parameters [3] { + Parameter #0 [ <required> $text ] + Parameter #1 [ <required> $from ] + Parameter #2 [ <required> $to ] + } + } + + Method [ <internal:phalcon> public method slice ] { + + - Parameters [3] { + Parameter #0 [ <required> $value ] + Parameter #1 [ <required> $start ] + Parameter #2 [ <optional> $end ] + } + } + + Method [ <internal:phalcon> public method sort ] { + + - Parameters [1] { + Parameter #0 [ <required> $value ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\View\Engine, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $view ] + Parameter #1 [ <optional> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\View\Engine, prototype Phalcon\Mvc\View\EngineInterface> public method getContent ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\View\Engine, prototype Phalcon\Mvc\View\EngineInterface> public method partial ] { + + - Parameters [1] { + Parameter #0 [ <required> $partialPath ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\View\Engine> public method getView ] { + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable> public method __get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\View\Engine\Php extends Phalcon\Mvc\View\Engine implements Phalcon\Mvc\View\EngineInterface, Phalcon\DI\InjectionAwareInterface, Phalcon\Events\EventsAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [3] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_eventsManager ] + Property [ <default> protected $_view ] + } + + - Methods [10] { + Method [ <internal:phalcon, overwrites Phalcon\Mvc\View\EngineInterface, prototype Phalcon\Mvc\View\EngineInterface> public method render ] { + + - Parameters [3] { + Parameter #0 [ <required> $path ] + Parameter #1 [ <required> $params ] + Parameter #2 [ <optional> $mustClean ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\View\Engine, ctor> public method __construct ] { + + - Parameters [2] { + Parameter #0 [ <required> $view ] + Parameter #1 [ <optional> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\View\Engine, prototype Phalcon\Mvc\View\EngineInterface> public method getContent ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\View\Engine, prototype Phalcon\Mvc\View\EngineInterface> public method partial ] { + + - Parameters [1] { + Parameter #0 [ <required> $partialPath ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Mvc\View\Engine> public method getView ] { + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method setEventsManager ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventsManager ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable, prototype Phalcon\Events\EventsAwareInterface> public method getEventsManager ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\DI\Injectable> public method __get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Mvc\View\Engine\Volt\Compiler implements Phalcon\DI\InjectionAwareInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [22] { + Property [ <default> protected $_dependencyInjector ] + Property [ <default> protected $_view ] + Property [ <default> protected $_options ] + Property [ <default> protected $_arrayHelpers ] + Property [ <default> protected $_level ] + Property [ <default> protected $_foreachLevel ] + Property [ <default> protected $_blockLevel ] + Property [ <default> protected $_exprLevel ] + Property [ <default> protected $_extended ] + Property [ <default> protected $_autoescape ] + Property [ <default> protected $_extendedBlocks ] + Property [ <default> protected $_currentBlock ] + Property [ <default> protected $_blocks ] + Property [ <default> protected $_forElsePointers ] + Property [ <default> protected $_loopPointers ] + Property [ <default> protected $_extensions ] + Property [ <default> protected $_functions ] + Property [ <default> protected $_filters ] + Property [ <default> protected $_macros ] + Property [ <default> protected $_prefix ] + Property [ <default> protected $_currentPath ] + Property [ <default> protected $_compiledTemplatePath ] + } + + - Methods [43] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $view ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method setDI ] { + + - Parameters [1] { + Parameter #0 [ <required> $dependencyInjector ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\DI\InjectionAwareInterface> public method getDI ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method setOptions ] { + + - Parameters [1] { + Parameter #0 [ <required> $options ] + } + } + + Method [ <internal:phalcon> public method setOption ] { + + - Parameters [2] { + Parameter #0 [ <required> $option ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> public method getOption ] { + + - Parameters [1] { + Parameter #0 [ <required> $option ] + } + } + + Method [ <internal:phalcon> public method getOptions ] { + } + + Method [ <internal:phalcon> public method fireExtensionEvent ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <optional> $arguments ] + } + } + + Method [ <internal:phalcon> public method addExtension ] { + + - Parameters [1] { + Parameter #0 [ <required> $extension ] + } + } + + Method [ <internal:phalcon> public method getExtensions ] { + } + + Method [ <internal:phalcon> public method addFunction ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <required> $definition ] + } + } + + Method [ <internal:phalcon> public method getFunctions ] { + } + + Method [ <internal:phalcon> public method addFilter ] { + + - Parameters [2] { + Parameter #0 [ <required> $name ] + Parameter #1 [ <required> $definition ] + } + } + + Method [ <internal:phalcon> public method getFilters ] { + } + + Method [ <internal:phalcon> public method setUniquePrefix ] { + + - Parameters [1] { + Parameter #0 [ <required> $prefix ] + } + } + + Method [ <internal:phalcon> public method getUniquePrefix ] { + } + + Method [ <internal:phalcon> public method attributeReader ] { + + - Parameters [1] { + Parameter #0 [ <required> $expr ] + } + } + + Method [ <internal:phalcon> public method functionCall ] { + + - Parameters [1] { + Parameter #0 [ <required> $expr ] + } + } + + Method [ <internal:phalcon> public method resolveTest ] { + + - Parameters [2] { + Parameter #0 [ <required> $test ] + Parameter #1 [ <required> $left ] + } + } + + Method [ <internal:phalcon> protected method resolveFilter ] { + } + + Method [ <internal:phalcon> public method expression ] { + + - Parameters [1] { + Parameter #0 [ <required> $expr ] + } + } + + Method [ <internal:phalcon> protected method _statementListOrExtends ] { + } + + Method [ <internal:phalcon> public method compileForeach ] { + + - Parameters [2] { + Parameter #0 [ <required> $statement ] + Parameter #1 [ <optional> $extendsMode ] + } + } + + Method [ <internal:phalcon> public method compileForElse ] { + } + + Method [ <internal:phalcon> public method compileIf ] { + + - Parameters [2] { + Parameter #0 [ <required> $statement ] + Parameter #1 [ <optional> $extendsMode ] + } + } + + Method [ <internal:phalcon> public method compileElseIf ] { + + - Parameters [1] { + Parameter #0 [ <required> $statement ] + } + } + + Method [ <internal:phalcon> public method compileCache ] { + + - Parameters [2] { + Parameter #0 [ <required> $statement ] + Parameter #1 [ <optional> $extendsMode ] + } + } + + Method [ <internal:phalcon> public method compileEcho ] { + + - Parameters [1] { + Parameter #0 [ <required> $statement ] + } + } + + Method [ <internal:phalcon> public method compileInclude ] { + + - Parameters [1] { + Parameter #0 [ <required> $statement ] + } + } + + Method [ <internal:phalcon> public method compileSet ] { + + - Parameters [1] { + Parameter #0 [ <required> $statement ] + } + } + + Method [ <internal:phalcon> public method compileDo ] { + + - Parameters [1] { + Parameter #0 [ <required> $statement ] + } + } + + Method [ <internal:phalcon> public method compileReturn ] { + + - Parameters [1] { + Parameter #0 [ <required> $statement ] + } + } + + Method [ <internal:phalcon> public method compileAutoEscape ] { + + - Parameters [2] { + Parameter #0 [ <required> $statement ] + Parameter #1 [ <required> $extendsMode ] + } + } + + Method [ <internal:phalcon> public method compileMacro ] { + + - Parameters [2] { + Parameter #0 [ <required> $statement ] + Parameter #1 [ <required> $extendsMode ] + } + } + + Method [ <internal:phalcon> public method compileCall ] { + } + + Method [ <internal:phalcon> protected method _statementList ] { + } + + Method [ <internal:phalcon> protected method _compileSource ] { + } + + Method [ <internal:phalcon> public method compileString ] { + + - Parameters [2] { + Parameter #0 [ <required> $viewCode ] + Parameter #1 [ <optional> $extendsMode ] + } + } + + Method [ <internal:phalcon> public method compileFile ] { + + - Parameters [3] { + Parameter #0 [ <required> $path ] + Parameter #1 [ <required> $compiledPath ] + Parameter #2 [ <optional> $extendsMode ] + } + } + + Method [ <internal:phalcon> public method compile ] { + + - Parameters [2] { + Parameter #0 [ <required> $templatePath ] + Parameter #1 [ <optional> $extendsMode ] + } + } + + Method [ <internal:phalcon> public method getTemplatePath ] { + } + + Method [ <internal:phalcon> public method getCompiledTemplatePath ] { + } + + Method [ <internal:phalcon> public method parse ] { + + - Parameters [1] { + Parameter #0 [ <required> $viewCode ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Events\Event ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [5] { + Property [ <default> protected $_type ] + Property [ <default> protected $_source ] + Property [ <default> protected $_data ] + Property [ <default> protected $_stopped ] + Property [ <default> protected $_cancelable ] + } + + - Methods [10] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [4] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $source ] + Parameter #2 [ <optional> $data ] + Parameter #3 [ <optional> $cancelable ] + } + } + + Method [ <internal:phalcon> public method setType ] { + + - Parameters [1] { + Parameter #0 [ <required> $eventType ] + } + } + + Method [ <internal:phalcon> public method getType ] { + } + + Method [ <internal:phalcon> public method getSource ] { + } + + Method [ <internal:phalcon> public method setData ] { + + - Parameters [1] { + Parameter #0 [ <required> $data ] + } + } + + Method [ <internal:phalcon> public method getData ] { + } + + Method [ <internal:phalcon> public method setCancelable ] { + + - Parameters [1] { + Parameter #0 [ <required> $cancelable ] + } + } + + Method [ <internal:phalcon> public method getCancelable ] { + } + + Method [ <internal:phalcon> public method stop ] { + } + + Method [ <internal:phalcon> public method isStopped ] { + } + } + } + + Class [ <internal:phalcon> class Phalcon\Events\Manager implements Phalcon\Events\ManagerInterface ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $_events ] + Property [ <default> protected $_collect ] + Property [ <default> protected $_enablePriorities ] + Property [ <default> protected $_responses ] + } + + - Methods [12] { + Method [ <internal:phalcon, prototype Phalcon\Events\ManagerInterface> public method attach ] { + + - Parameters [2] { + Parameter #0 [ <required> $eventType ] + Parameter #1 [ <required> $handler ] + } + } + + Method [ <internal:phalcon> public method enablePriorities ] { + + - Parameters [1] { + Parameter #0 [ <required> $enablePriorities ] + } + } + + Method [ <internal:phalcon> public method arePrioritiesEnabled ] { + } + + Method [ <internal:phalcon> public method collectResponses ] { + + - Parameters [1] { + Parameter #0 [ <required> $collect ] + } + } + + Method [ <internal:phalcon> public method isCollecting ] { + } + + Method [ <internal:phalcon> public method getResponses ] { + } + + Method [ <internal:phalcon, prototype Phalcon\Events\ManagerInterface> public method detachAll ] { + + - Parameters [1] { + Parameter #0 [ <optional> $type ] + } + } + + Method [ <internal:phalcon> public method fireQueue ] { + + - Parameters [2] { + Parameter #0 [ <required> $queue ] + Parameter #1 [ <required> $event ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Events\ManagerInterface> public method fire ] { + + - Parameters [3] { + Parameter #0 [ <required> $eventType ] + Parameter #1 [ <required> $source ] + Parameter #2 [ <optional> $data ] + } + } + + Method [ <internal:phalcon> public method hasListeners ] { + + - Parameters [1] { + Parameter #0 [ <required> $type ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Events\ManagerInterface> public method getListeners ] { + + - Parameters [1] { + Parameter #0 [ <required> $type ] + } + } + + Method [ <internal, deprecated:phalcon> public method dettachAll ] { + + - Parameters [1] { + Parameter #0 [ <optional> $type ] + } + } + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Image ] { + + - Constants [11] { + Constant [ integer NONE ] { 1 } + Constant [ integer WIDTH ] { 2 } + Constant [ integer HEIGHT ] { 3 } + Constant [ integer AUTO ] { 4 } + Constant [ integer INVERSE ] { 5 } + Constant [ integer PRECISE ] { 6 } + Constant [ integer TENSILE ] { 7 } + Constant [ integer HORIZONTAL ] { 11 } + Constant [ integer VERTICAL ] { 12 } + Constant [ integer GD ] { 21 } + Constant [ integer IMAGICK ] { 22 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Class [ <internal:phalcon> abstract class Phalcon\Image\Adapter implements Phalcon\Image\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [1] { + Property [ protected static $_checked ] + } + + - Static methods [0] { + } + + - Properties [7] { + Property [ <default> protected $_image ] + Property [ <default> protected $_file ] + Property [ <default> protected $_realpath ] + Property [ <default> protected $_width ] + Property [ <default> protected $_height ] + Property [ <default> protected $_type ] + Property [ <default> protected $_mime ] + } + + - Methods [36] { + Method [ <internal:phalcon> public method getRealPath ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method getWidth ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method getHeight ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method getType ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method getMime ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon> public method getImage ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Phalcon\Image\AdapterInterface> public method resize ] { + + - Parameters [3] { + Parameter #0 [ <optional> $width ] + Parameter #1 [ <optional> $height ] + Parameter #2 [ <optional> $master ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Image\AdapterInterface> public method liquidRescale ] { + + - Parameters [4] { + Parameter #0 [ <required> $width ] + Parameter #1 [ <required> $height ] + Parameter #2 [ <optional> $delta_x ] + Parameter #3 [ <optional> $rigidity ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Image\AdapterInterface> public method crop ] { + + - Parameters [4] { + Parameter #0 [ <required> $width ] + Parameter #1 [ <required> $height ] + Parameter #2 [ <optional> $offset_x ] + Parameter #3 [ <optional> $offset_y ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Image\AdapterInterface> public method rotate ] { + + - Parameters [1] { + Parameter #0 [ <required> $degrees ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Image\AdapterInterface> public method flip ] { + + - Parameters [1] { + Parameter #0 [ <required> $direction ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Image\AdapterInterface> public method sharpen ] { + + - Parameters [1] { + Parameter #0 [ <required> $amount ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Image\AdapterInterface> public method reflection ] { + + - Parameters [3] { + Parameter #0 [ <optional> $height ] + Parameter #1 [ <optional> $opacity ] + Parameter #2 [ <optional> $fade_in ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Image\AdapterInterface> public method watermark ] { + + - Parameters [4] { + Parameter #0 [ <required> $watermark ] + Parameter #1 [ <optional> $offset_x ] + Parameter #2 [ <optional> $offset_y ] + Parameter #3 [ <optional> $opacity ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Image\AdapterInterface> public method text ] { + + - Parameters [7] { + Parameter #0 [ <required> $text ] + Parameter #1 [ <optional> $offset_x ] + Parameter #2 [ <optional> $offset_y ] + Parameter #3 [ <optional> $opacity ] + Parameter #4 [ <optional> $color ] + Parameter #5 [ <optional> $size ] + Parameter #6 [ <optional> $fontfile ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Image\AdapterInterface> public method mask ] { + + - Parameters [1] { + Parameter #0 [ <required> $mask ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Image\AdapterInterface> public method background ] { + + - Parameters [2] { + Parameter #0 [ <required> $color ] + Parameter #1 [ <optional> $quality ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Image\AdapterInterface> public method blur ] { + + - Parameters [1] { + Parameter #0 [ <optional> $radius ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Image\AdapterInterface> public method pixelate ] { + + - Parameters [1] { + Parameter #0 [ <optional> $amount ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Image\AdapterInterface> public method save ] { + + - Parameters [2] { + Parameter #0 [ <optional> $file ] + Parameter #1 [ <optional> $quality ] + } + } + + Method [ <internal:phalcon, prototype Phalcon\Image\AdapterInterface> public method render ] { + + - Parameters [2] { + Parameter #0 [ <optional> $type ] + Parameter #1 [ <optional> $quality ] + } + } + + Method [ <internal:phalcon> abstract protected method _resize ] { + + - Parameters [2] { + Parameter #0 [ <required> $width ] + Parameter #1 [ <required> $height ] + } + } + + Method [ <internal:phalcon> abstract protected method _liquidRescale ] { + + - Parameters [4] { + Parameter #0 [ <required> $width ] + Parameter #1 [ <required> $height ] + Parameter #2 [ <required> $delta_x ] + Parameter #3 [ <required> $regidity ] + } + } + + Method [ <internal:phalcon> abstract protected method _crop ] { + + - Parameters [4] { + Parameter #0 [ <required> $width ] + Parameter #1 [ <required> $height ] + Parameter #2 [ <required> $offset_x ] + Parameter #3 [ <required> $offset_y ] + } + } + + Method [ <internal:phalcon> abstract protected method _rotate ] { + + - Parameters [1] { + Parameter #0 [ <required> $degrees ] + } + } + + Method [ <internal:phalcon> abstract protected method _flip ] { + + - Parameters [1] { + Parameter #0 [ <required> $direction ] + } + } + + Method [ <internal:phalcon> abstract protected method _sharpen ] { + + - Parameters [1] { + Parameter #0 [ <required> $amount ] + } + } + + Method [ <internal:phalcon> abstract protected method _reflection ] { + + - Parameters [3] { + Parameter #0 [ <required> $height ] + Parameter #1 [ <required> $opacity ] + Parameter #2 [ <required> $fade_in ] + } + } + + Method [ <internal:phalcon> abstract protected method _watermark ] { + + - Parameters [4] { + Parameter #0 [ <required> $watermark ] + Parameter #1 [ <required> $offset_x ] + Parameter #2 [ <required> $offset_y ] + Parameter #3 [ <required> $opacity ] + } + } + + Method [ <internal:phalcon> abstract protected method _text ] { + + - Parameters [9] { + Parameter #0 [ <required> $text ] + Parameter #1 [ <required> $offset_x ] + Parameter #2 [ <required> $offset_y ] + Parameter #3 [ <required> $opacity ] + Parameter #4 [ <required> $r ] + Parameter #5 [ <required> $g ] + Parameter #6 [ <required> $b ] + Parameter #7 [ <required> $size ] + Parameter #8 [ <required> $fontfile ] + } + } + + Method [ <internal:phalcon> abstract protected method _mask ] { + + - Parameters [1] { + Parameter #0 [ <required> $mask ] + } + } + + Method [ <internal:phalcon> abstract protected method _background ] { + + - Parameters [4] { + Parameter #0 [ <required> $r ] + Parameter #1 [ <required> $g ] + Parameter #2 [ <required> $b ] + Parameter #3 [ <required> $opacity ] + } + } + + Method [ <internal:phalcon> abstract protected method _blur ] { + + - Parameters [1] { + Parameter #0 [ <required> $radius ] + } + } + + Method [ <internal:phalcon> abstract protected method _pixelate ] { + + - Parameters [1] { + Parameter #0 [ <required> $amount ] + } + } + + Method [ <internal:phalcon> abstract protected method _save ] { + + - Parameters [2] { + Parameter #0 [ <required> $file ] + Parameter #1 [ <required> $quality ] + } + } + + Method [ <internal:phalcon> abstract protected method _render ] { + + - Parameters [2] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $quality ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Image\Adapter\GD extends Phalcon\Image\Adapter implements Phalcon\Image\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [1] { + Property [ protected static $_checked ] + } + + - Static methods [1] { + Method [ <internal:phalcon> static public method check ] { + } + } + + - Properties [7] { + Property [ <default> protected $_image ] + Property [ <default> protected $_file ] + Property [ <default> protected $_realpath ] + Property [ <default> protected $_width ] + Property [ <default> protected $_height ] + Property [ <default> protected $_type ] + Property [ <default> protected $_mime ] + } + + - Methods [39] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [3] { + Parameter #0 [ <required> $file ] + Parameter #1 [ <optional> $width ] + Parameter #2 [ <optional> $height ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _resize ] { + + - Parameters [2] { + Parameter #0 [ <required> $width ] + Parameter #1 [ <required> $height ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _liquidRescale ] { + + - Parameters [4] { + Parameter #0 [ <required> $width ] + Parameter #1 [ <required> $height ] + Parameter #2 [ <required> $delta_x ] + Parameter #3 [ <required> $regidity ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _crop ] { + + - Parameters [4] { + Parameter #0 [ <required> $width ] + Parameter #1 [ <required> $height ] + Parameter #2 [ <required> $offset_x ] + Parameter #3 [ <required> $offset_y ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _rotate ] { + + - Parameters [1] { + Parameter #0 [ <required> $degrees ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _flip ] { + + - Parameters [1] { + Parameter #0 [ <required> $direction ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _sharpen ] { + + - Parameters [1] { + Parameter #0 [ <required> $amount ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _reflection ] { + + - Parameters [3] { + Parameter #0 [ <required> $height ] + Parameter #1 [ <required> $opacity ] + Parameter #2 [ <required> $fade_in ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _watermark ] { + + - Parameters [4] { + Parameter #0 [ <required> $watermark ] + Parameter #1 [ <required> $offset_x ] + Parameter #2 [ <required> $offset_y ] + Parameter #3 [ <required> $opacity ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _text ] { + + - Parameters [9] { + Parameter #0 [ <required> $text ] + Parameter #1 [ <required> $offset_x ] + Parameter #2 [ <required> $offset_y ] + Parameter #3 [ <required> $opacity ] + Parameter #4 [ <required> $r ] + Parameter #5 [ <required> $g ] + Parameter #6 [ <required> $b ] + Parameter #7 [ <required> $size ] + Parameter #8 [ <required> $fontfile ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _mask ] { + + - Parameters [1] { + Parameter #0 [ <required> $mask ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _background ] { + + - Parameters [4] { + Parameter #0 [ <required> $r ] + Parameter #1 [ <required> $g ] + Parameter #2 [ <required> $b ] + Parameter #3 [ <required> $opacity ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _blur ] { + + - Parameters [1] { + Parameter #0 [ <required> $radius ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _pixelate ] { + + - Parameters [1] { + Parameter #0 [ <required> $amount ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _save ] { + + - Parameters [2] { + Parameter #0 [ <required> $file ] + Parameter #1 [ <required> $quality ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _render ] { + + - Parameters [2] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $quality ] + } + } + + Method [ <internal:phalcon> protected method _create ] { + + - Parameters [2] { + Parameter #0 [ <required> $width ] + Parameter #1 [ <required> $height ] + } + } + + Method [ <internal:phalcon, dtor> public method __destruct ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter> public method getRealPath ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter> public method getWidth ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter> public method getHeight ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter> public method getType ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter> public method getMime ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter> public method getImage ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method resize ] { + + - Parameters [3] { + Parameter #0 [ <optional> $width ] + Parameter #1 [ <optional> $height ] + Parameter #2 [ <optional> $master ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method liquidRescale ] { + + - Parameters [4] { + Parameter #0 [ <required> $width ] + Parameter #1 [ <required> $height ] + Parameter #2 [ <optional> $delta_x ] + Parameter #3 [ <optional> $rigidity ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method crop ] { + + - Parameters [4] { + Parameter #0 [ <required> $width ] + Parameter #1 [ <required> $height ] + Parameter #2 [ <optional> $offset_x ] + Parameter #3 [ <optional> $offset_y ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method rotate ] { + + - Parameters [1] { + Parameter #0 [ <required> $degrees ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method flip ] { + + - Parameters [1] { + Parameter #0 [ <required> $direction ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method sharpen ] { + + - Parameters [1] { + Parameter #0 [ <required> $amount ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method reflection ] { + + - Parameters [3] { + Parameter #0 [ <optional> $height ] + Parameter #1 [ <optional> $opacity ] + Parameter #2 [ <optional> $fade_in ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method watermark ] { + + - Parameters [4] { + Parameter #0 [ <required> $watermark ] + Parameter #1 [ <optional> $offset_x ] + Parameter #2 [ <optional> $offset_y ] + Parameter #3 [ <optional> $opacity ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method text ] { + + - Parameters [7] { + Parameter #0 [ <required> $text ] + Parameter #1 [ <optional> $offset_x ] + Parameter #2 [ <optional> $offset_y ] + Parameter #3 [ <optional> $opacity ] + Parameter #4 [ <optional> $color ] + Parameter #5 [ <optional> $size ] + Parameter #6 [ <optional> $fontfile ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method mask ] { + + - Parameters [1] { + Parameter #0 [ <required> $mask ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method background ] { + + - Parameters [2] { + Parameter #0 [ <required> $color ] + Parameter #1 [ <optional> $quality ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method blur ] { + + - Parameters [1] { + Parameter #0 [ <optional> $radius ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method pixelate ] { + + - Parameters [1] { + Parameter #0 [ <optional> $amount ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method save ] { + + - Parameters [2] { + Parameter #0 [ <optional> $file ] + Parameter #1 [ <optional> $quality ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method render ] { + + - Parameters [2] { + Parameter #0 [ <optional> $type ] + Parameter #1 [ <optional> $quality ] + } + } + } + } + + Class [ <internal:phalcon> class Phalcon\Image\Adapter\Imagick extends Phalcon\Image\Adapter implements Phalcon\Image\AdapterInterface ] { + + - Constants [0] { + } + + - Static properties [2] { + Property [ protected static $_version ] + Property [ protected static $_checked ] + } + + - Static methods [2] { + Method [ <internal:phalcon> static public method check ] { + } + + Method [ <internal:phalcon> static public method setResourceLimit ] { + + - Parameters [2] { + Parameter #0 [ <required> $resource ] + Parameter #1 [ <required> $limit ] + } + } + } + + - Properties [7] { + Property [ <default> protected $_image ] + Property [ <default> protected $_file ] + Property [ <default> protected $_realpath ] + Property [ <default> protected $_width ] + Property [ <default> protected $_height ] + Property [ <default> protected $_type ] + Property [ <default> protected $_mime ] + } + + - Methods [39] { + Method [ <internal:phalcon, ctor> public method __construct ] { + + - Parameters [3] { + Parameter #0 [ <required> $file ] + Parameter #1 [ <optional> $width ] + Parameter #2 [ <optional> $height ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _resize ] { + + - Parameters [2] { + Parameter #0 [ <required> $width ] + Parameter #1 [ <required> $height ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _liquidRescale ] { + + - Parameters [4] { + Parameter #0 [ <required> $width ] + Parameter #1 [ <required> $height ] + Parameter #2 [ <required> $delta_x ] + Parameter #3 [ <required> $regidity ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _crop ] { + + - Parameters [4] { + Parameter #0 [ <required> $width ] + Parameter #1 [ <required> $height ] + Parameter #2 [ <required> $offset_x ] + Parameter #3 [ <required> $offset_y ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _rotate ] { + + - Parameters [1] { + Parameter #0 [ <required> $degrees ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _flip ] { + + - Parameters [1] { + Parameter #0 [ <required> $direction ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _sharpen ] { + + - Parameters [1] { + Parameter #0 [ <required> $amount ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _reflection ] { + + - Parameters [3] { + Parameter #0 [ <required> $height ] + Parameter #1 [ <required> $opacity ] + Parameter #2 [ <required> $fade_in ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _watermark ] { + + - Parameters [4] { + Parameter #0 [ <required> $watermark ] + Parameter #1 [ <required> $offset_x ] + Parameter #2 [ <required> $offset_y ] + Parameter #3 [ <required> $opacity ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _text ] { + + - Parameters [9] { + Parameter #0 [ <required> $text ] + Parameter #1 [ <required> $offset_x ] + Parameter #2 [ <required> $offset_y ] + Parameter #3 [ <required> $opacity ] + Parameter #4 [ <required> $r ] + Parameter #5 [ <required> $g ] + Parameter #6 [ <required> $b ] + Parameter #7 [ <required> $size ] + Parameter #8 [ <required> $fontfile ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _mask ] { + + - Parameters [1] { + Parameter #0 [ <required> $mask ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _background ] { + + - Parameters [4] { + Parameter #0 [ <required> $r ] + Parameter #1 [ <required> $g ] + Parameter #2 [ <required> $b ] + Parameter #3 [ <required> $opacity ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _blur ] { + + - Parameters [1] { + Parameter #0 [ <required> $radius ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _pixelate ] { + + - Parameters [1] { + Parameter #0 [ <required> $amount ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _save ] { + + - Parameters [2] { + Parameter #0 [ <required> $file ] + Parameter #1 [ <required> $quality ] + } + } + + Method [ <internal:phalcon, overwrites Phalcon\Image\Adapter, prototype Phalcon\Image\Adapter> protected method _render ] { + + - Parameters [2] { + Parameter #0 [ <required> $type ] + Parameter #1 [ <required> $quality ] + } + } + + Method [ <internal:phalcon, dtor> public method __destruct ] { + } + + Method [ <internal:phalcon> public method getInternalImInstance ] { + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter> public method getRealPath ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter> public method getWidth ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter> public method getHeight ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter> public method getType ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter> public method getMime ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter> public method getImage ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method resize ] { + + - Parameters [3] { + Parameter #0 [ <optional> $width ] + Parameter #1 [ <optional> $height ] + Parameter #2 [ <optional> $master ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method liquidRescale ] { + + - Parameters [4] { + Parameter #0 [ <required> $width ] + Parameter #1 [ <required> $height ] + Parameter #2 [ <optional> $delta_x ] + Parameter #3 [ <optional> $rigidity ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method crop ] { + + - Parameters [4] { + Parameter #0 [ <required> $width ] + Parameter #1 [ <required> $height ] + Parameter #2 [ <optional> $offset_x ] + Parameter #3 [ <optional> $offset_y ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method rotate ] { + + - Parameters [1] { + Parameter #0 [ <required> $degrees ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method flip ] { + + - Parameters [1] { + Parameter #0 [ <required> $direction ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method sharpen ] { + + - Parameters [1] { + Parameter #0 [ <required> $amount ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method reflection ] { + + - Parameters [3] { + Parameter #0 [ <optional> $height ] + Parameter #1 [ <optional> $opacity ] + Parameter #2 [ <optional> $fade_in ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method watermark ] { + + - Parameters [4] { + Parameter #0 [ <required> $watermark ] + Parameter #1 [ <optional> $offset_x ] + Parameter #2 [ <optional> $offset_y ] + Parameter #3 [ <optional> $opacity ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method text ] { + + - Parameters [7] { + Parameter #0 [ <required> $text ] + Parameter #1 [ <optional> $offset_x ] + Parameter #2 [ <optional> $offset_y ] + Parameter #3 [ <optional> $opacity ] + Parameter #4 [ <optional> $color ] + Parameter #5 [ <optional> $size ] + Parameter #6 [ <optional> $fontfile ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method mask ] { + + - Parameters [1] { + Parameter #0 [ <required> $mask ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method background ] { + + - Parameters [2] { + Parameter #0 [ <required> $color ] + Parameter #1 [ <optional> $quality ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method blur ] { + + - Parameters [1] { + Parameter #0 [ <optional> $radius ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method pixelate ] { + + - Parameters [1] { + Parameter #0 [ <optional> $amount ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method save ] { + + - Parameters [2] { + Parameter #0 [ <optional> $file ] + Parameter #1 [ <optional> $quality ] + } + } + + Method [ <internal:phalcon, inherits Phalcon\Image\Adapter, prototype Phalcon\Image\AdapterInterface> public method render ] { + + - Parameters [2] { + Parameter #0 [ <optional> $type ] + Parameter #1 [ <optional> $quality ] + } + } + } + } + + Class [ <internal:phalcon> <iterateable> final class Phalcon\Registry implements ArrayAccess, Iterator, Traversable, Serializable, Countable, JsonSerializable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [19] { + Method [ <internal:phalcon> public method &__get ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon> public method __set ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon> public method __isset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon> public method __unset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon> public method __call ] { + + - Parameters [2] { + Parameter #0 [ <required> $method ] + Parameter #1 [ <optional> array $arguments ] + } + } + + Method [ <internal:phalcon, prototype Countable> public method count ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method &offsetGet ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ <required> $property ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, prototype ArrayAccess> public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ <required> $property ] + } + } + + Method [ <internal:phalcon, prototype Iterator> public method current ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Iterator> public method key ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Iterator> public method next ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Iterator> public method rewind ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Iterator> public method valid ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype JsonSerializable> public method jsonSerialize ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Serializable, ctor> public method serialize ] { + + - Parameters [0] { + } + } + + Method [ <internal:phalcon, prototype Serializable, dtor> public method unserialize ] { + + - Parameters [1] { + Parameter #0 [ <optional> $serialized ] + } + } + + Method [ <internal:phalcon> private method __wakeup ] { + + - Parameters [0] { + } + } + } + } + } +} + diff --git a/php-phalcon.spec b/php-phalcon.spec new file mode 100644 index 0000000..1131886 --- /dev/null +++ b/php-phalcon.spec @@ -0,0 +1,223 @@ +# spec file for php-phalcon +# +# Copyright (c) 2014 Remi Collet +# License: CC-BY-SA +# http://creativecommons.org/licenses/by-sa/3.0/ +# +# Please, preserve the changelog entries +# +%{?scl: %scl_package php-phalcon} +%{!?scl: %global pkg_name %{name}} +%global gh_commit 777fc83e7ed9932c006c54ce76a2975dc97aeac0 +%global gh_short %(c=%{gh_commit}; echo ${c:0:7}) +%global gh_owner phalcon +%global gh_project cphalcon +%global with_zts 0%{?__ztsphp:1} +%global with_tests %{?_without_tests:0}%{!?_without_tests:1} +%global ext_name phalcon +%if "%{php_version}" < "5.6" +# after pdo.ini, json.ini, igbinary.ini +%global ini_name z-%{ext_name}.ini +%else +# after 40-json.ini, 20-pdo.ini, 40-igbinary.ini +%global ini_name 50-%{ext_name}.ini +%endif + +Name: %{?scl_prefix}php-phalcon +Version: 1.3.2 +Release: 1%{?dist}%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')} +Summary: Phalcon Framework + +Group: Development/Libraries +License: MIT +URL: https://github.com/%{gh_owner}/%{gh_project} +Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{gh_project}-%{version}.tar.gz + +Patch1: https://github.com/phalcon/cphalcon/pull/2772.patch +Patch2: https://github.com/phalcon/cphalcon/pull/2774.patch +Patch3: https://github.com/phalcon/cphalcon/pull/2775.patch + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root +BuildRequires: %{?scl_prefix}php-devel > 5.3 +BuildRequires: %{?scl_prefix}php-date +BuildRequires: %{?scl_prefix}php-hash +BuildRequires: %{?scl_prefix}php-json +BuildRequires: %{?scl_prefix}php-pdo +BuildRequires: %{?scl_prefix}php-session +BuildRequires: %{?scl_prefix}php-spl +BuildRequires: %{?scl_prefix}php-pecl-igbinary-devel + +Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api} +Requires: %{?scl_prefix}php(api) = %{php_core_api} +%if "%{php_version}" < "5.4" +# php 5.3.3 in EL-6 don't use arched virtual provides +# so only requires real packages instead +Requires: %{?scl_prefix}php-common%{?_isa} +%else +Requires: %{?scl_prefix}php-date%{?_isa} +Requires: %{?scl_prefix}php-hash%{?_isa} +Requires: %{?scl_prefix}php-json%{?_isa} +Requires: %{?scl_prefix}php-session%{?_isa} +Requires: %{?scl_prefix}php-spl%{?_isa} +%endif +Requires: %{?scl_prefix}php-pdo%{?_isa} +Requires: %{?scl_prefix}php-pecl(igbinary)%{?_isa} + +# Don't provides php-composer(phalcon/cphalcon), not registered on packagist + +%if 0%{?fedora} < 20 && 0%{?rhel} < 7 +# Filter shared private +%{?filter_provides_in: %filter_provides_in %{_libdir}/.*\.so$} +%endif +%{?filter_setup} + + +%description +Phalcon is a web framework implemented as a C extension offering +high performance and lower resource consumption. + +Notice: non-free JS and CSS minifiers are disabled. + +Documentation: http://docs.phalconphp.com + +Package built for PHP %(%{__php} -r 'echo PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')%{?scl: as Software Collection}. + + +%prep +%setup -q -n %{gh_project}-%{gh_commit} + +%patch1 -p1 -b .2772 +%patch2 -p1 -b .2774 +chmod 644 ext/assets/filters/*.2774 +%patch3 -p1 -b .2775 + +# Drop non-free stuff +rm ext/assets/filters/{js,css}minifier.{c,h} + +# Sanity check, really often broken +extver=$(sed -n '/#define PHP_PHALCON_VERSION/{s/.* "//;s/".*$//;p}' ext/php_phalcon.h) +if test "x${extver}" != "x%{version}%{?prever:-%{prever}}"; then + : Error: Upstream extension version is ${extver}, expecting %{version}%{?prever:-%{prever}}. + exit 1 +fi + +# Create configuration file +cat << 'EOF' | tee %{ini_name} +; Enable '%{summary}' extension module +extension=%{ext_name}.so + +; Configuration +;phalcon.orm.events=1 +;phalcon.orm.virtual_foreign_keys=1 +;phalcon.orm.column_renaming=1 +;phalcon.orm.not_null_validations=1 +;phalcon.orm.exception_on_failed_save=0 +;phalcon.orm.enable_literals=1 +;phalcon.db.escape_identifiers=1 +;phalcon.register_psr3_classes=0 +EOF + +mv ext NTS +%if %{with_zts} +# Duplicate source tree for NTS / ZTS build +cp -r NTS ZTS +%endif + + +%build +peclconf() { +%configure \ + --without-non-free \ + --enable-phalcon \ + --with-libdir=%{_lib} \ + --with-php-config=$1 +} +cd NTS +%{_bindir}/phpize +peclconf %{_bindir}/php-config +make %{?_smp_mflags} + +%if %{with_zts} +cd ../ZTS +%{_bindir}/zts-phpize +peclconf %{_bindir}/zts-php-config +make %{?_smp_mflags} +%endif + + +%install +rm -rf %{buildroot} + +make -C NTS install INSTALL_ROOT=%{buildroot} + +# install config file (z-http.ini to be loaded after json) +install -Dpm644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name} + +%if %{with_zts} +make -C ZTS install INSTALL_ROOT=%{buildroot} +install -Dpm644 %{ini_name} %{buildroot}%{php_ztsinidir}/%{ini_name} +%endif + + +%check +# Shared needed extensions +modules="" +for mod in json hash pdo igbinary; do + if [ -f %{php_extdir}/${mod}.so ]; then + modules="$modules -d extension=${mod}.so" + fi +done + +: Minimal load test for NTS extension +%{__php} --no-php-ini \ + $modules \ + --define extension=%{buildroot}%{php_extdir}/%{ext_name}.so \ + --modules | grep -i %{ext_name} + +%if %{with_tests} +: Upstream test suite NTS extension +cd NTS +SKIP_ONLINE_TESTS=1 \ +TEST_PHP_EXECUTABLE=%{__php} \ +TEST_PHP_ARGS="-n $modules -d extension=$PWD/modules/%{ext_name}.so" \ +NO_INTERACTION=1 \ +REPORT_EXIT_STATUS=1 \ +%{__php} -n run-tests.php --show-diff +%endif + +%if %{with_zts} +: Minimal load test for ZTS extension +%{__ztsphp} --no-php-ini \ + $modules \ + --define extension=%{buildroot}%{php_ztsextdir}/%{ext_name}.so \ + --modules | grep -i %{ext_name} +%endif + + +%clean +rm -rf %{buildroot} + + +%files +%defattr(-,root,root,-) +%{!?_licensedir:%global license %%doc} +%license docs/LICENSE.txt +%doc CHANGELOG +%doc CONTRIBUTING.md +%doc docs/DOCUMENTATION.txt + +%config(noreplace) %{php_inidir}/%{ini_name} +%{php_extdir}/%{ext_name}.so + +%if %{with_zts} +%config(noreplace) %{php_ztsinidir}/%{ini_name} +%{php_ztsextdir}/%{ext_name}.so +%endif + + +%changelog +* Thu Sep 4 2014 Remi Collet <remi@fedoraproject.org> - 1.3.2-1 +- initial package, version 1.3.2 +- open https://github.com/phalcon/cphalcon/pull/2772 (merged) +- open https://github.com/phalcon/cphalcon/pull/2774 +- open https://github.com/phalcon/cphalcon/pull/2775
\ No newline at end of file |