Completed
Push — master ( 677406...871e5e )
by Derek
02:41
created
src/Nabu/Autoloader.php 1 patch
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
      */
38 38
     public function registerPackages($package, $path)
39 39
     {
40
-        $this->update_log("info", "Preparing {$package} package for registration.");
40
+        $this->update_log("info", "preparing {$package} package for registration.");
41 41
         $this->update_log("debug", "Parameters: package = {$package}, path = {$path}");
42 42
 
43 43
         $package = trim($package, "\\");
@@ -111,14 +111,14 @@  discard block
 block discarded – undo
111 111
                 $this->update_log("debug", "Class file path is {$class_path}");
112 112
 
113 113
                 if (file_exists($class_path)) {
114
-                    $this->update_log("debug", "File {$class_path} exists; including file");
114
+                    $this->update_log("debug", "file {$class_path} exists; including file");
115 115
 
116 116
                     /** @noinspection PhpIncludeInspection */
117 117
                     include $class_path;
118 118
 
119 119
                     $this->update_log("info", "Completed loading {$class_path}");
120 120
                 } else {
121
-                    $this->update_log("debug", "File {$class_path} does not exist");
121
+                    $this->update_log("debug", "file {$class_path} does not exist");
122 122
 
123 123
                     $class_path = false;
124 124
                 }
Please login to merge, or discard this patch.