Completed
Pull Request — dev (#17)
by Ben
11:05
created
src/Config.php 2 patches
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      * From an item from the configuration
77 77
      *
78 78
      * @param  string $key
79
-     * @return boolean
79
+     * @return boolean|null
80 80
      */
81 81
     public function forget($key)
82 82
     {
@@ -158,6 +158,7 @@  discard block
 block discarded – undo
158 158
      * Flatten a multi-dimensional array into a linear key/value list
159 159
      *
160 160
      * @param  array $data
161
+     * @param string $prefix
161 162
      * @return array
162 163
      */
163 164
     private function dataEncode($data, $prefix = null)
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Benrowe\Laravel\Config;
4 4
 
5
-use Illuminate\Support\Arr;
6
-use Benrowe\Laravel\Config\Modifiers\Modifier;
7 5
 use Benrowe\Laravel\Config\Modifiers\Collection;
6
+use Benrowe\Laravel\Config\Modifiers\Modifier;
7
+use Illuminate\Support\Arr;
8 8
 
9 9
 
10 10
 /**
Please login to merge, or discard this patch.
src/Modifiers/Collection.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Benrowe\Laravel\Config\Modifiers;
4 4
 
5
-use Illuminate\Support\Collection as BaseCollection;
6 5
 use Benrowe\Laravel\Config\Modifiers\Modifier;
6
+use Illuminate\Support\Collection as BaseCollection;
7 7
 
8 8
 /**
9 9
  *
Please login to merge, or discard this patch.