@@ -42,7 +42,7 @@ discard block |
||
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, "\\"); |
@@ -116,14 +116,14 @@ discard block |
||
116 | 116 | $this->logger->debug("Class file path is {$class_path}"); |
117 | 117 | |
118 | 118 | if (file_exists($class_path)) { |
119 | - $this->logger->debug("File {$class_path} exists; including file"); |
|
119 | + $this->logger->debug("file {$class_path} exists; including file"); |
|
120 | 120 | |
121 | 121 | /** @noinspection PhpIncludeInspection */ |
122 | 122 | include $class_path; |
123 | 123 | |
124 | 124 | $this->logger->info("Completed loading {$class_path}"); |
125 | 125 | } else { |
126 | - $this->logger->debug("File {$class_path} does not exist"); |
|
126 | + $this->logger->debug("file {$class_path} does not exist"); |
|
127 | 127 | |
128 | 128 | $class_path = false; |
129 | 129 | } |