Closed lablnet closed 5 years ago
Yes the new issue is about https://github.com/zestframework/Zest_Framework/issues/185
BTW, why using the + operator to merge the arrays?
Crazy to say it concat the array, shorthand for the array_merge
Yes i am writing Arrays class so it can be used their efficiently
The following code is the problematic on
Configuration.php
:I think we should add the
$configPath
arg for thisparseData
method because it's should let developers be easy to specify their config file path.If the developers don't specify file path, just try to detect the
$file1
and$file2
by default.BTW, why using the
+
operator to merge the arrays?This will not a good way to manipulate arrays, and try using the
array_merge
instead.This will be the another PR.