mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
add a space after the comma in the $merge array
This commit is contained in:
parent
22ad6cdca5
commit
c8326460a4
1 changed files with 1 additions and 1 deletions
|
@ -675,7 +675,7 @@ class Model extends Object {
|
|||
}
|
||||
|
||||
if (is_subclass_of($this, 'AppModel')) {
|
||||
$merge = array('actsAs','findMethods');
|
||||
$merge = array('actsAs', 'findMethods');
|
||||
$parentClass = get_parent_class($this);
|
||||
if ($parentClass !== 'AppModel') {
|
||||
$this->_mergeVars($merge, $parentClass);
|
||||
|
|
Loading…
Reference in a new issue