/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/ORM
NameSizeModeActions
Association/-0755rm
Behavior/-0755rm
Exception/-0755rm
Locator/-0755rm
Rule/-0755rm
Association.php414100644editdlrm
AssociationCollection.php117620644editdlrm
AssociationsNormalizerTrait.php23570644editdlrm
Behavior.php146730644editdlrm
BehaviorRegistry.php93440644editdlrm
composer.json13040644editdlrm
EagerLoadable.php80880644editdlrm
EagerLoader.php315040644editdlrm
Entity.php27930644editdlrm
LazyEagerLoader.php67070644editdlrm
LICENSE.txt12040644editdlrm
Marshaller.php340010644editdlrm
PropertyMarshalInterface.php14300644editdlrm
Query.php482250644editdlrm
README.md68510644editdlrm
ResultSet.php158590644editdlrm
RulesChecker.php106150644editdlrm
SaveOptionsBuilder.php58050644editdlrm
Table.php1109080644editdlrm
TableRegistry.php48060644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/ORM/Entity.php (2793B)
1, 'name' => 'Andrew']) * ``` * * @param array $properties hash of properties to set in this entity * @param array $options list of options to use when creating this entity */ public function __construct(array $properties = [], array $options = []) { $options += [ 'useSetters' => true, 'markClean' => false, 'markNew' => null, 'guard' => false, 'source' => null, ]; if (!empty($options['source'])) { $this->setSource($options['source']); } if ($options['markNew'] !== null) { $this->setNew($options['markNew']); } if (!empty($properties) && $options['markClean'] && !$options['useSetters']) { $this->_fields = $properties; return; } if (!empty($properties)) { $this->set($properties, [ 'setter' => $options['useSetters'], 'guard' => $options['guard'], ]); } if ($options['markClean']) { $this->clean(); } } }