From 4b88d347be5948a358a28c1e5ddcd6cb4d8edfc0 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 9 Jun 2026 09:32:54 +0200 Subject: update to 5.14.1 --- REFLECTION | 756 ++++++++++++++++++++++++++++++++++++++++--------------------- 1 file changed, 503 insertions(+), 253 deletions(-) (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION index 4a9df47..fef01d2 100644 --- a/REFLECTION +++ b/REFLECTION @@ -1,4 +1,4 @@ -Extension [ extension #152 phalcon version 5.14.0 ] { +Extension [ extension #152 phalcon version 5.14.1 ] { - Dependencies { Dependency [ pdo (Required) ] @@ -77,7 +77,7 @@ Extension [ extension #152 phalcon version 5.14.0 ] { } } - - Classes [1289] { + - Classes [1292] { Interface [ interface Phalcon\Di\InjectionAwareInterface ] { - Constants [0] { @@ -4284,6 +4284,70 @@ Extension [ extension #152 phalcon version 5.14.0 ] { } } + Interface [ interface Phalcon\Contracts\Auth\Access\Access ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [6] { + Method [ abstract public method getExceptActions ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ abstract public method getOnlyActions ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ abstract public method isAllowed ] { + + - Parameters [3] { + Parameter #0 [ Phalcon\Contracts\Auth\Guard\Guard $guard ] + Parameter #1 [ string $actionName ] + Parameter #2 [ array $context = [] ] + } + - Return [ bool ] + } + + Method [ abstract public method redirectTo ] { + + - Parameters [0] { + } + - Return [ ?array ] + } + + Method [ abstract public method setExceptActions ] { + + - Parameters [1] { + Parameter #0 [ array $exceptActions = [] ] + } + - Return [ void ] + } + + Method [ abstract public method setOnlyActions ] { + + - Parameters [1] { + Parameter #0 [ array $onlyActions = [] ] + } + - Return [ void ] + } + } + } + Interface [ interface Phalcon\Contracts\Auth\Adapter\AdapterConfig ] { - Constants [0] { @@ -4986,75 +5050,6 @@ Extension [ extension #152 phalcon version 5.14.0 ] { } } - Interface [ interface Phalcon\Contracts\Auth\Access\Access ] { - - - Constants [0] { - } - - - Static properties [0] { - } - - - Static methods [0] { - } - - - Properties [0] { - } - - - Methods [7] { - Method [ abstract public method allowedIf ] { - - - Parameters [0] { - } - - Return [ bool ] - } - - Method [ abstract public method getExceptActions ] { - - - Parameters [0] { - } - - Return [ array ] - } - - Method [ abstract public method getOnlyActions ] { - - - Parameters [0] { - } - - Return [ array ] - } - - Method [ abstract public method isAllowed ] { - - - Parameters [1] { - Parameter #0 [ string $actionName ] - } - - Return [ bool ] - } - - Method [ abstract public method redirectTo ] { - - - Parameters [0] { - } - - Return [ ?array ] - } - - Method [ abstract public method setExceptActions ] { - - - Parameters [1] { - Parameter #0 [ array $exceptActions = [] ] - } - - Return [ void ] - } - - Method [ abstract public method setOnlyActions ] { - - - Parameters [1] { - Parameter #0 [ array $onlyActions = [] ] - } - - Return [ void ] - } - } - } - Interface [ interface Phalcon\Contracts\Auth\Guard\Guard ] { - Constants [0] { @@ -5068,7 +5063,7 @@ Extension [ extension #152 phalcon version 5.14.0 ] { - Parameters [3] { Parameter #0 [ Phalcon\Contracts\Auth\Adapter\Adapter $adapter ] - Parameter #1 [ Phalcon\Contracts\Container\Service\Collection $container ] + Parameter #1 [ $container ] Parameter #2 [ array $options ] } - Return [ static ] @@ -7650,7 +7645,7 @@ Extension [ extension #152 phalcon version 5.14.0 ] { - Properties [0] { } - - Methods [13] { + - Methods [14] { Method [ abstract public method alert ] { - Parameters [2] { @@ -7753,6 +7748,15 @@ Extension [ extension #152 phalcon version 5.14.0 ] { - Return [ void ] } + Method [ abstract public method trace ] { + + - Parameters [2] { + Parameter #0 [ string $message ] + Parameter #1 [ array $context = [] ] + } + - Return [ void ] + } + Method [ abstract public method warning ] { - Parameters [2] { @@ -12911,7 +12915,7 @@ Extension [ extension #152 phalcon version 5.14.0 ] { - Properties [0] { } - - Methods [28] { + - Methods [29] { Method [ abstract public method appendMessage ] { - Parameters [1] { @@ -13085,6 +13089,15 @@ Extension [ extension #152 phalcon version 5.14.0 ] { - Return [ void ] } + Method [ abstract public method setSync ] { + + - Parameters [2] { + Parameter #0 [ $elements = ] + Parameter #1 [ bool $enabled = true ] + } + - Return [ Phalcon\Mvc\ModelInterface ] + } + Method [ abstract public method setTransaction ] { - Parameters [1] { @@ -23710,6 +23723,122 @@ Extension [ extension #152 phalcon version 5.14.0 ] { } } + Class [ abstract class Phalcon\Auth\AbstractAuthDispatcherListener ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ protected $manager = NULL ] + } + + - Methods [3] { + Method [ public method __construct ] { + + - Parameters [1] { + Parameter #0 [ Phalcon\Contracts\Auth\Manager $manager ] + } + } + + Method [ abstract protected method getActionType ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ protected method enforce ] { + + - Parameters [3] { + Parameter #0 [ string $actionName ] + Parameter #1 [ array $context = [] ] + Parameter #2 [ $forwardHandler = ] + } + - Return [ bool ] + } + } + } + + Class [ abstract class Phalcon\Auth\Access\AbstractAccess implements Phalcon\Contracts\Auth\Access\Access ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ protected $exceptActions = NULL ] + Property [ protected $onlyActions = NULL ] + } + + - Methods [7] { + Method [ public method getExceptActions ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ public method getOnlyActions ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ public method isAllowed ] { + + - Parameters [3] { + Parameter #0 [ Phalcon\Contracts\Auth\Guard\Guard $guard ] + Parameter #1 [ string $actionName ] + Parameter #2 [ array $context = [] ] + } + - Return [ bool ] + } + + Method [ public method redirectTo ] { + + - Parameters [0] { + } + - Return [ ?array ] + } + + Method [ public method setExceptActions ] { + + - Parameters [1] { + Parameter #0 [ array $exceptActions = [] ] + } + - Return [ void ] + } + + Method [ public method setOnlyActions ] { + + - Parameters [1] { + Parameter #0 [ array $onlyActions = [] ] + } + - Return [ void ] + } + + Method [ abstract protected method allowedIf ] { + + - Parameters [1] { + Parameter #0 [ Phalcon\Contracts\Auth\Guard\Guard $guard ] + } + - Return [ bool ] + } + } + } + Class [ abstract class Phalcon\Auth\Adapter\Config\AbstractAdapterConfig implements Phalcon\Contracts\Auth\Adapter\AdapterConfig ] { - Constants [0] { @@ -27314,126 +27443,6 @@ Extension [ extension #152 phalcon version 5.14.0 ] { } } - Class [ abstract class Phalcon\Auth\AbstractAuthDispatcherListener ] { - - - Constants [0] { - } - - - Static properties [0] { - } - - - Static methods [0] { - } - - - Properties [1] { - Property [ protected $manager = NULL ] - } - - - Methods [3] { - Method [ public method __construct ] { - - - Parameters [1] { - Parameter #0 [ Phalcon\Contracts\Auth\Manager $manager ] - } - } - - Method [ abstract protected method getActionType ] { - - - Parameters [0] { - } - - Return [ string ] - } - - Method [ protected method enforce ] { - - - Parameters [2] { - Parameter #0 [ string $actionName ] - Parameter #1 [ $forwardHandler = ] - } - - Return [ bool ] - } - } - } - - Class [ abstract class Phalcon\Auth\Access\AbstractAccess implements Phalcon\Contracts\Auth\Access\Access ] { - - - Constants [0] { - } - - - Static properties [0] { - } - - - Static methods [0] { - } - - - Properties [3] { - Property [ protected $exceptActions = NULL ] - Property [ protected $manager = NULL ] - Property [ protected $onlyActions = NULL ] - } - - - Methods [8] { - Method [ public method __construct ] { - - - Parameters [1] { - Parameter #0 [ Phalcon\Contracts\Auth\Manager $manager ] - } - } - - Method [ public method getExceptActions ] { - - - Parameters [0] { - } - - Return [ array ] - } - - Method [ public method getOnlyActions ] { - - - Parameters [0] { - } - - Return [ array ] - } - - Method [ public method isAllowed ] { - - - Parameters [1] { - Parameter #0 [ string $actionName ] - } - - Return [ bool ] - } - - Method [ public method redirectTo ] { - - - Parameters [0] { - } - - Return [ ?array ] - } - - Method [ public method setExceptActions ] { - - - Parameters [1] { - Parameter #0 [ array $exceptActions = [] ] - } - - Return [ void ] - } - - Method [ public method setOnlyActions ] { - - - Parameters [1] { - Parameter #0 [ array $onlyActions = [] ] - } - - Return [ void ] - } - - Method [ abstract public method allowedIf ] { - - - Parameters [0] { - } - - Return [ bool ] - } - } - } - Class [ abstract class Phalcon\Auth\Adapter\AbstractArrayAdapter extends Phalcon\Auth\Adapter\AbstractAdapter implements Phalcon\Contracts\Auth\Adapter\Adapter ] { - Constants [0] { @@ -27553,7 +27562,7 @@ Extension [ extension #152 phalcon version 5.14.0 ] { - Parameters [3] { Parameter #0 [ Phalcon\Contracts\Auth\Adapter\Adapter $adapter ] - Parameter #1 [ Phalcon\Contracts\Container\Service\Collection $container ] + Parameter #1 [ $container ] Parameter #2 [ array $options ] } - Return [ static ] @@ -32894,7 +32903,7 @@ Extension [ extension #152 phalcon version 5.14.0 ] { Class [ abstract class Phalcon\Logger\AbstractLogger ] { - - Constants [9] { + - Constants [10] { Constant [ public int ALERT ] { 2 } Constant [ public int CRITICAL ] { 1 } Constant [ public int CUSTOM ] { 8 } @@ -32903,6 +32912,7 @@ Extension [ extension #152 phalcon version 5.14.0 ] { Constant [ public int ERROR ] { 3 } Constant [ public int INFO ] { 6 } Constant [ public int NOTICE ] { 5 } + Constant [ public int TRACE ] { 9 } Constant [ public int WARNING ] { 4 } } @@ -41043,6 +41053,14 @@ Extension [ extension #152 phalcon version 5.14.0 ] { } - Methods [10] { + Method [ public method newInstance ] { + + - Parameters [1] { + Parameter #0 [ string $name ] + } + - Return [ object ] + } + Method [ protected method getExceptionClass ] { - Parameters [0] { @@ -41095,14 +41113,6 @@ Extension [ extension #152 phalcon version 5.14.0 ] { - Return [ bool ] } - Method [ public method newInstance ] { - - - Parameters [1] { - Parameter #0 [ string $name ] - } - - Return [ object ] - } - Method [ public method register ] { - Parameters [2] { @@ -41122,7 +41132,7 @@ Extension [ extension #152 phalcon version 5.14.0 ] { } } - Class [ class Phalcon\Auth\Access\Auth extends Phalcon\Auth\Access\AbstractAccess implements Phalcon\Contracts\Auth\Access\Access ] { + Class [ class Phalcon\Auth\Access\Acl extends Phalcon\Auth\Access\AbstractAccess implements Phalcon\Contracts\Auth\Access\Access ] { - Constants [0] { } @@ -41133,25 +41143,47 @@ Extension [ extension #152 phalcon version 5.14.0 ] { - Static methods [0] { } - - Properties [3] { + - Properties [5] { Property [ protected $exceptActions = NULL ] - Property [ protected $manager = NULL ] Property [ protected $onlyActions = NULL ] + Property [ protected $acl = NULL ] + Property [ protected $guestRole = 'guest' ] + Property [ protected $moduleSeparator = ':' ] } - - Methods [8] { - Method [ public method allowedIf ] { + - Methods [9] { + Method [ public method __construct ] { - - Parameters [0] { + - Parameters [2] { + Parameter #0 [ Phalcon\Acl\Adapter\AdapterInterface $acl ] + Parameter #1 [ array $options = [] ] + } + } + + Method [ public method isAllowed ] { + + - Parameters [3] { + Parameter #0 [ Phalcon\Contracts\Auth\Guard\Guard $guard ] + Parameter #1 [ string $actionName ] + Parameter #2 [ array $context = [] ] } - Return [ bool ] } - Method [ public method __construct ] { + Method [ protected method allowedIf ] { - Parameters [1] { - Parameter #0 [ Phalcon\Contracts\Auth\Manager $manager ] + Parameter #0 [ Phalcon\Contracts\Auth\Guard\Guard $guard ] } + - Return [ bool ] + } + + Method [ protected method resolveRole ] { + + - Parameters [1] { + Parameter #0 [ Phalcon\Contracts\Auth\Guard\Guard $guard ] + } + - Return [ string ] } Method [ public method getExceptActions ] { @@ -41168,10 +41200,76 @@ Extension [ extension #152 phalcon version 5.14.0 ] { - Return [ array ] } - Method [ public method isAllowed ] { + Method [ public method redirectTo ] { + + - Parameters [0] { + } + - Return [ ?array ] + } + + Method [ public method setExceptActions ] { - Parameters [1] { - Parameter #0 [ string $actionName ] + Parameter #0 [ array $exceptActions = [] ] + } + - Return [ void ] + } + + Method [ public method setOnlyActions ] { + + - Parameters [1] { + Parameter #0 [ array $onlyActions = [] ] + } + - Return [ void ] + } + } + } + + Class [ class Phalcon\Auth\Access\Auth extends Phalcon\Auth\Access\AbstractAccess implements Phalcon\Contracts\Auth\Access\Access ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ protected $exceptActions = NULL ] + Property [ protected $onlyActions = NULL ] + } + + - Methods [7] { + Method [ protected method allowedIf ] { + + - Parameters [1] { + Parameter #0 [ Phalcon\Contracts\Auth\Guard\Guard $guard ] + } + - Return [ bool ] + } + + Method [ public method getExceptActions ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ public method getOnlyActions ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ public method isAllowed ] { + + - Parameters [3] { + Parameter #0 [ Phalcon\Contracts\Auth\Guard\Guard $guard ] + Parameter #1 [ string $actionName ] + Parameter #2 [ array $context = [] ] } - Return [ bool ] } @@ -41212,25 +41310,18 @@ Extension [ extension #152 phalcon version 5.14.0 ] { - Static methods [0] { } - - Properties [3] { + - Properties [2] { Property [ protected $exceptActions = NULL ] - Property [ protected $manager = NULL ] Property [ protected $onlyActions = NULL ] } - - Methods [8] { - Method [ public method allowedIf ] { - - - Parameters [0] { - } - - Return [ bool ] - } - - Method [ public method __construct ] { + - Methods [7] { + Method [ protected method allowedIf ] { - Parameters [1] { - Parameter #0 [ Phalcon\Contracts\Auth\Manager $manager ] + Parameter #0 [ Phalcon\Contracts\Auth\Guard\Guard $guard ] } + - Return [ bool ] } Method [ public method getExceptActions ] { @@ -41249,8 +41340,10 @@ Extension [ extension #152 phalcon version 5.14.0 ] { Method [ public method isAllowed ] { - - Parameters [1] { - Parameter #0 [ string $actionName ] + - Parameters [3] { + Parameter #0 [ Phalcon\Contracts\Auth\Guard\Guard $guard ] + Parameter #1 [ string $actionName ] + Parameter #2 [ array $context = [] ] } - Return [ bool ] } @@ -41906,9 +41999,10 @@ Extension [ extension #152 phalcon version 5.14.0 ] { Method [ protected method enforce ] { - - Parameters [2] { + - Parameters [3] { Parameter #0 [ string $actionName ] - Parameter #1 [ $forwardHandler = ] + Parameter #1 [ array $context = [] ] + Parameter #2 [ $forwardHandler = ] } - Return [ bool ] } @@ -43341,7 +43435,7 @@ Extension [ extension #152 phalcon version 5.14.0 ] { } } - Class [ final class Phalcon\Auth\Internal\Options ] { + Class [ final class Phalcon\Auth\Internal\ContainerResolver ] { - Constants [0] { } @@ -43349,35 +43443,89 @@ Extension [ extension #152 phalcon version 5.14.0 ] { - Static properties [0] { } - - Static methods [4] { - Method [ static public method arrayOption ] { + - Static methods [5] { + Method [ static public method ensureContainer ] { + + - Parameters [1] { + Parameter #0 [ $container ] + } + - Return [ void ] + } + + Method [ static public method resolveFresh ] { + + - Parameters [2] { + Parameter #0 [ $container ] + Parameter #1 [ string $name ] + } + - Return [ object ] + } + + Method [ static public method requireService ] { - Parameters [3] { + Parameter #0 [ $container ] + Parameter #1 [ array $candidates ] + Parameter #2 [ string $context ] + } + - Return [ object ] + } + + Method [ static public method serviceCandidates ] { + + - Parameters [4] { Parameter #0 [ array $options ] Parameter #1 [ string $key ] - Parameter #2 [ array $defaultValue ] + Parameter #2 [ string $fqn ] + Parameter #3 [ string $shortName ] } - Return [ array ] } - Method [ static public method requireString ] { + Method [ static private method resolveShared ] { + + - Parameters [2] { + Parameter #0 [ $container ] + Parameter #1 [ string $name ] + } + - Return [ object ] + } + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Class [ final class Phalcon\Auth\Internal\Options ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [3] { + Method [ static public method arrayOption ] { - Parameters [3] { Parameter #0 [ array $options ] Parameter #1 [ string $key ] - Parameter #2 [ string $context ] + Parameter #2 [ array $defaultValue ] } - - Return [ string ] + - Return [ array ] } - Method [ static public method resolveService ] { + Method [ static public method requireString ] { - Parameters [3] { - Parameter #0 [ $container ] - Parameter #1 [ string $serviceId ] + Parameter #0 [ array $options ] + Parameter #1 [ string $key ] Parameter #2 [ string $context ] } - - Return [ object ] + - Return [ string ] } Method [ static public method stringOrNull ] { @@ -43625,6 +43773,59 @@ Extension [ extension #152 phalcon version 5.14.0 ] { } } + Class [ class Phalcon\Auth\Micro\AuthMicroListener extends Phalcon\Auth\AbstractAuthDispatcherListener ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ protected $manager = NULL ] + Property [ protected $componentName = NULL ] + } + + - Methods [4] { + Method [ public method __construct ] { + + - Parameters [2] { + Parameter #0 [ Phalcon\Contracts\Auth\Manager $manager ] + Parameter #1 [ string $componentName = 'Micro' ] + } + } + + Method [ public method beforeExecuteRoute ] { + + - Parameters [2] { + Parameter #0 [ Phalcon\Events\Event $event ] + Parameter #1 [ Phalcon\Mvc\Micro $application ] + } + - Return [ bool ] + } + + Method [ protected method getActionType ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ protected method enforce ] { + + - Parameters [3] { + Parameter #0 [ string $actionName ] + Parameter #1 [ array $context = [] ] + Parameter #2 [ $forwardHandler = ] + } + - Return [ bool ] + } + } + } + Class [ class Phalcon\Auth\Mvc\AuthDispatcherListener extends Phalcon\Auth\AbstractAuthDispatcherListener ] { - Constants [0] { @@ -43666,9 +43867,10 @@ Extension [ extension #152 phalcon version 5.14.0 ] { Method [ protected method enforce ] { - - Parameters [2] { + - Parameters [3] { Parameter #0 [ string $actionName ] - Parameter #1 [ $forwardHandler = ] + Parameter #1 [ array $context = [] ] + Parameter #2 [ $forwardHandler = ] } - Return [ bool ] } @@ -56059,7 +56261,7 @@ Extension [ extension #152 phalcon version 5.14.0 ] { Property [ protected $messages = NULL ] } - - Methods [14] { + - Methods [15] { Method [ public method alert ] { - Parameters [2] { @@ -56159,6 +56361,15 @@ Extension [ extension #152 phalcon version 5.14.0 ] { - Return [ void ] } + Method [ public method trace ] { + + - Parameters [2] { + Parameter #0 [ string $message ] + Parameter #1 [ array $context = [] ] + } + - Return [ void ] + } + Method [ public method warning ] { - Parameters [2] { @@ -76192,7 +76403,7 @@ Extension [ extension #152 phalcon version 5.14.0 ] { Property [ protected $subscribers = NULL ] } - - Methods [32] { + - Methods [34] { Method [ public method addSubscriber ] { - Parameters [1] { @@ -76250,6 +76461,15 @@ Extension [ extension #152 phalcon version 5.14.0 ] { - Return [ void ] } + Method [ public method dispatch ] { + + - Parameters [3] { + Parameter #0 [ $event ] + Parameter #1 [ $name = ] + Parameter #2 [ $source = ] + } + } + Method [ public method enablePriorities ] { - Parameters [1] { @@ -76428,7 +76648,16 @@ Extension [ extension #152 phalcon version 5.14.0 ] { - Return [ bool ] } - Method [ private method dispatch ] { + Method [ private method runObjectQueue ] { + + - Parameters [3] { + Parameter #0 [ array $queue ] + Parameter #1 [ $event ] + Parameter #2 [ $methodName ] + } + } + + Method [ private method runQueue ] { - Parameters [7] { Parameter #0 [ array $queue ] @@ -103042,7 +103271,7 @@ Extension [ extension #152 phalcon version 5.14.0 ] { Class [ class Phalcon\Logger\Enum ] { - - Constants [9] { + - Constants [10] { Constant [ public int ALERT ] { 2 } Constant [ public int CRITICAL ] { 1 } Constant [ public int CUSTOM ] { 8 } @@ -103051,6 +103280,7 @@ Extension [ extension #152 phalcon version 5.14.0 ] { Constant [ public int ERROR ] { 3 } Constant [ public int INFO ] { 6 } Constant [ public int NOTICE ] { 5 } + Constant [ public int TRACE ] { 9 } Constant [ public int WARNING ] { 4 } } @@ -103925,7 +104155,7 @@ Extension [ extension #152 phalcon version 5.14.0 ] { Class [ class Phalcon\Logger\Logger extends Phalcon\Logger\AbstractLogger implements Phalcon\Logger\LoggerInterface ] { - - Constants [9] { + - Constants [10] { Constant [ public int ALERT ] { 2 } Constant [ public int CRITICAL ] { 1 } Constant [ public int CUSTOM ] { 8 } @@ -103934,6 +104164,7 @@ Extension [ extension #152 phalcon version 5.14.0 ] { Constant [ public int ERROR ] { 3 } Constant [ public int INFO ] { 6 } Constant [ public int NOTICE ] { 5 } + Constant [ public int TRACE ] { 9 } Constant [ public int WARNING ] { 4 } } @@ -103951,7 +104182,7 @@ Extension [ extension #152 phalcon version 5.14.0 ] { Property [ protected $timezone = NULL ] } - - Methods [22] { + - Methods [23] { Method [ public method alert ] { - Parameters [2] { @@ -104025,6 +104256,15 @@ Extension [ extension #152 phalcon version 5.14.0 ] { - Return [ void ] } + Method [ public method trace ] { + + - Parameters [2] { + Parameter #0 [ string $message ] + Parameter #1 [ array $context = [] ] + } + - Return [ void ] + } + Method [ public method warning ] { - Parameters [2] { @@ -107339,7 +107579,7 @@ Extension [ extension #152 phalcon version 5.14.0 ] { } } - - Properties [16] { + - Properties [17] { Property [ protected $container = NULL ] Property [ protected $dirtyState = 1 ] Property [ protected $dirtyRelated = NULL ] @@ -107352,13 +107592,14 @@ Extension [ extension #152 phalcon version 5.14.0 ] { Property [ protected $rawValues = NULL ] Property [ protected $skipped = false ] Property [ protected $snapshot = NULL ] + Property [ protected $syncRelated = NULL ] Property [ protected $transaction = NULL ] Property [ protected $uniqueKey = NULL ] Property [ protected $uniqueParams = NULL ] Property [ protected $uniqueTypes = NULL ] } - - Methods [88] { + - Methods [89] { Method [ final public method __construct ] { - Parameters [3] { @@ -107737,6 +107978,15 @@ Extension [ extension #152 phalcon version 5.14.0 ] { - Return [ void ] } + Method [ public method setSync ] { + + - Parameters [2] { + Parameter #0 [ $elements = ] + Parameter #1 [ bool $enabled = true ] + } + - Return [ Phalcon\Mvc\ModelInterface ] + } + Method [ public method setTransaction ] { - Parameters [1] { @@ -144336,7 +144586,7 @@ Extension [ extension #152 phalcon version 5.14.0 ] { } - Static properties [1] { - Property [ public static $name = NULL ] + Property [ public static $serviceName = NULL ] } - Static methods [0] { @@ -144603,7 +144853,7 @@ Extension [ extension #152 phalcon version 5.14.0 ] { } - Static properties [1] { - Property [ public static $name = NULL ] + Property [ public static $serviceName = NULL ] } - Static methods [0] { -- cgit