Completed
Push — master ( ce741b...581fbd )
by Derek
02:10
created
src/Nabu/Autoloader.php 1 patch
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
         }
56 56
 
57 57
         if ($package_registered && $path_registered) {
58
-            $this->updateLog("info", "Path {$path} already registered for package {$package}");
58
+            $this->updateLog("info", "path {$path} already registered for package {$package}");
59 59
         } else {
60 60
             $this->packages[$package][] = $path;
61 61
 
@@ -130,14 +130,14 @@  discard block
 block discarded – undo
130 130
                 $this->updateLog("debug", "Class file path is {$class_path}");
131 131
 
132 132
                 if (file_exists($class_path)) {
133
-                    $this->updateLog("debug", "File {$class_path} exists; including file");
133
+                    $this->updateLog("debug", "file {$class_path} exists; including file");
134 134
 
135 135
                     /** @noinspection PhpIncludeInspection */
136 136
                     include_once $class_path;
137 137
 
138 138
                     $this->updateLog("info", "Completed loading {$class_path}");
139 139
                 } else {
140
-                    $this->updateLog("debug", "File {$class_path} does not exist");
140
+                    $this->updateLog("debug", "file {$class_path} does not exist");
141 141
 
142 142
                     $class_path = false;
143 143
                 }
Please login to merge, or discard this patch.