814
815 foreach ($arrays as $arr)
816 {
817 if ( ! is_array($arr))
818 {
819 throw new \InvalidArgumentException('Arr::merge() - all arguments must be arrays.');
820 }
821
822 foreach ($arr as $k => $v)
823 {
824 // numeric keys are appended
the erro is on line 819
43
44 foreach ($paths as $path)
45 {
46 $config = $overwrite ?
47 array_merge($config, $this->load_file($path)) :
48 \Arr::merge($config, $this->load_file($path));
49 }
50
51 return $config;
52 }
53
It looks like you're new here. If you want to get involved, click one of these buttons!