Completed
Push — dev ( df843d...cb9eb5 )
by Ben
02:21
created
src/Config.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@
 block discarded – undo
136 136
      */
137 137
     private function unpackArray($data)
138 138
     {
139
-        $arrKeys = array_filter($data, function ($val) {
139
+        $arrKeys = array_filter($data, function($val) {
140 140
             return preg_match(self::ARRAY_PATTERN, $val);
141 141
         });
142 142
         foreach ($arrKeys as $key => $value) {
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
      * From an item from the configuration
75 75
      *
76 76
      * @param  string $key
77
-     * @return boolean
77
+     * @return boolean|null
78 78
      */
79 79
     public function forget($key)
80 80
     {
Please login to merge, or discard this patch.