@@ -55,7 +55,7 @@ discard block |
||
| 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 |
||
| 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 | } |