/var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/ORM
NameSizeModeActions
Association/-0755rm
Behavior/-0755rm
Exception/-0755rm
Locator/-0755rm
Rule/-0755rm
Association.php406730644editdlrm
AssociationCollection.php118650644editdlrm
AssociationsNormalizerTrait.php23190644editdlrm
Behavior.php142110644editdlrm
BehaviorRegistry.php92990644editdlrm
composer.json13040644editdlrm
EagerLoadable.php80440644editdlrm
EagerLoader.php312430644editdlrm
Entity.php27630644editdlrm
LazyEagerLoader.php66700644editdlrm
LICENSE.txt12040644editdlrm
Marshaller.php333660644editdlrm
PropertyMarshalInterface.php14150644editdlrm
Query.php469990644editdlrm
README.md68480644editdlrm
ResultSet.php152890644editdlrm
RulesChecker.php102760644editdlrm
SaveOptionsBuilder.php57080644editdlrm
Table.php1085540644editdlrm
TableRegistry.php49660644editdlrm
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/ORM/Entity.php (2763B)
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(); } } }