Completed
Push — master ( c21d9a...a8e036 )
by Derek
02:09
created
src/Nabu/Autoloader.php 1 patch
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      */
43 43
     public function registerPackages($package, $path)
44 44
     {
45
-        $this->logger->info("Preparing {$package} package for registration.");
45
+        $this->logger->info("preparing {$package} package for registration.");
46 46
         $this->logger->debug("Parameters: package = {$package}, path = {$path}");
47 47
 
48 48
         $package = trim($package, "\\");
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
                 $this->logger->debug("Set up class path as {$class_path}");
126 126
 
127 127
                 if (file_exists($class_path)) {
128
-                    $this->logger->debug("File {$class_path} exists");
128
+                    $this->logger->debug("file {$class_path} exists");
129 129
 
130 130
                     $this->logger->debug("Including " . $class_path);
131 131
                     /** @noinspection PhpIncludeInspection */
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
 
136 136
                     $this->logger->info("Completed loading {$path_loaded}");
137 137
                 } else {
138
-                    $this->logger->debug("File {$class_path} does not exist given {$package_name} package");
138
+                    $this->logger->debug("file {$class_path} does not exist given {$package_name} package");
139 139
 
140 140
                     $path_loaded = false;
141 141
                 }
Please login to merge, or discard this patch.