%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/egp/vendor/codeception/specify/docs/ |
Upload File : |
## Codeception\Specify\Config Global Specify configuration. Should be set in bootstrap. ```php <?php // disable deep cloning of properties inside specify block \Codeception\Specify\Config::setDeepClone(false); ?> ``` #### *public* propertyIgnored($property) #### *public* classIgnored($value) #### *public* propertyIsShallowCloned($property) #### *public* propertyIsDeeplyCloned($property) #### *public static* setDeepClone($deepClone) Enable or disable using of deep cloning for objects by default. Deep cloning is the default. * `param boolean` $deepClone #### *public static* setIgnoredClasses($ignoredClasses) #### *public static* setIgnoredProperties($ignoredProperties) Globally set class properties are going to be ignored for cloning in specify blocks. ```php <?php \Codeception\Specify\Config::setIgnoredProperties(['users', 'repository']); ``` * `param array` $ignoredProperties #### *public static* addIgnoredClasses($ignoredClasses) Add specific classes to cloning ignore list. Instances of those classes won't be cloned for specify blocks. ```php <?php \Codeception\Specify\Config::addIgnoredClasses(['\Acme\Domain\UserRepo', '\Acme\Domain\PostRepo']); ?> ``` * `param` $ignoredClasses #### *public static* create() @return Config