@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | */ |
| 38 | 38 | public function registerPackages($package, $path) |
| 39 | 39 | { |
| 40 | - $this->updateLog("info", "Preparing {$package} package for registration."); |
|
| 40 | + $this->updateLog("info", "preparing {$package} package for registration."); |
|
| 41 | 41 | $this->updateLog("debug", "Parameters: package = {$package}, path = {$path}"); |
| 42 | 42 | |
| 43 | 43 | $package = trim($package, "\\"); |
@@ -111,14 +111,14 @@ discard block |
||
| 111 | 111 | $this->updateLog("debug", "Class file path is {$class_path}"); |
| 112 | 112 | |
| 113 | 113 | if (file_exists($class_path)) { |
| 114 | - $this->updateLog("debug", "File {$class_path} exists; including file"); |
|
| 114 | + $this->updateLog("debug", "file {$class_path} exists; including file"); |
|
| 115 | 115 | |
| 116 | 116 | /** @noinspection PhpIncludeInspection */ |
| 117 | 117 | include $class_path; |
| 118 | 118 | |
| 119 | 119 | $this->updateLog("info", "Completed loading {$class_path}"); |
| 120 | 120 | } else { |
| 121 | - $this->updateLog("debug", "File {$class_path} does not exist"); |
|
| 121 | + $this->updateLog("debug", "file {$class_path} does not exist"); |
|
| 122 | 122 | |
| 123 | 123 | $class_path = false; |
| 124 | 124 | } |