Completed
Push — master ( f5b710...01450d )
by Derek
02:08
created
src/Nabu/Autoloader.php 1 patch
Upper-Lower-Casing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
             $package_loaded = $this->loadPackage($package, $class_path);
115 115
 
116 116
             if ($package_loaded) {
117
-                $this->updateLog("info", "Loaded {$class_path} using package {$package}");
117
+                $this->updateLog("info", "loaded {$class_path} using package {$package}");
118 118
                 return true;
119 119
             }
120 120
         }
@@ -163,9 +163,9 @@  discard block
 block discarded – undo
163 163
         $package_registered = array_key_exists($package, $this->packages);
164 164
 
165 165
         if ($package_registered) {
166
-            $this->updateLog("info", "Package {$package} is registered");
166
+            $this->updateLog("info", "package {$package} is registered");
167 167
         } else {
168
-            $this->updateLog("info", "Package {$package} is not registered");
168
+            $this->updateLog("info", "package {$package} is not registered");
169 169
         }
170 170
 
171 171
         return $package_registered;
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
             if ($path_registered !== false) {
191 191
                 $path_registered = true;
192 192
 
193
-                $this->updateLog("info", "Path {$path} already registered for package {$package}");
193
+                $this->updateLog("info", "path {$path} already registered for package {$package}");
194 194
             }
195 195
         } else {
196 196
             $path_registered = false;
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
     private function requireFile($path)
211 211
     {
212 212
         if (file_exists($path)) {
213
-            $this->updateLog("debug", "File {$path} exists; requiring file");
213
+            $this->updateLog("debug", "file {$path} exists; requiring file");
214 214
 
215 215
             /** @noinspection PhpIncludeInspection */
216 216
             require $path;
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
 
220 220
             return true;
221 221
         } else {
222
-            $this->updateLog("debug", "File {$path} does not exist");
222
+            $this->updateLog("debug", "file {$path} does not exist");
223 223
 
224 224
             return false;
225 225
         }
Please login to merge, or discard this patch.
src/Kishar/Page.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         } else {
33 33
             $this->contents = false;
34 34
             
35
-            $this->updateLog("alert", "File {$contents} not found");
35
+            $this->updateLog("alert", "file {$contents} not found");
36 36
         }
37 37
 
38 38
         return $contents_exist;
Please login to merge, or discard this patch.