/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/AssociationsNormalizerTrait.php (2319B)
$options) { $pointer = &$result; if (is_int($table)) { $table = $options; $options = []; } if (!strpos($table, '.')) { $result[$table] = $options; continue; } $path = explode('.', $table); $table = array_pop($path); $first = array_shift($path); $pointer += [$first => []]; $pointer = &$pointer[$first]; $pointer += ['associated' => []]; foreach ($path as $t) { $pointer += ['associated' => []]; $pointer['associated'] += [$t => []]; $pointer['associated'][$t] += ['associated' => []]; $pointer = &$pointer['associated'][$t]; } $pointer['associated'] += [$table => []]; $pointer['associated'][$table] = $options + $pointer['associated'][$table]; } return $result['associated'] ?? $result; } }