Completed
Push — master ( e43f1a...57db71 )
by Arman
26s queued 12s
created
src/Libraries/Database/IdiormDbal.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
      */
136 136
     public function select(...$columns): object
137 137
     {
138
-        array_walk($columns, function (&$column) {
138
+        array_walk($columns, function(&$column) {
139 139
             if (is_array($column)) {
140 140
                 $column = array_flip($column);
141 141
             }
Please login to merge, or discard this patch.
src/Libraries/Storage/FileSystem.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
      */
113 113
     public function baseName($file)
114 114
     {
115
-        return (string)pathinfo($file, PATHINFO_BASENAME);
115
+        return (string) pathinfo($file, PATHINFO_BASENAME);
116 116
     }
117 117
 
118 118
     /**
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
      */
124 124
     public function fileName($file)
125 125
     {
126
-        return (string)pathinfo($file, PATHINFO_FILENAME);
126
+        return (string) pathinfo($file, PATHINFO_FILENAME);
127 127
     }
128 128
 
129 129
     /**
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
      */
135 135
     public function extension($file)
136 136
     {
137
-        return (string)pathinfo($file, PATHINFO_EXTENSION);
137
+        return (string) pathinfo($file, PATHINFO_EXTENSION);
138 138
     }
139 139
 
140 140
     /**
Please login to merge, or discard this patch.