Completed
Push — master ( 677406...871e5e )
by Derek
02:41
created
app/bootstrap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@
 block discarded – undo
4 4
  */
5 5
 
6 6
 require "config/app_constants.php";
7
-require DILMUN_VENDOR_DIR . "autoload.php";
8
-require DILMUN_SOURCE_DIR . "Nabu/Autoloader.php";
7
+require DILMUN_VENDOR_DIR."autoload.php";
8
+require DILMUN_SOURCE_DIR."Nabu/Autoloader.php";
9 9
 
10 10
 /**
11 11
  * @todo Pull this out somehow so that logging on bootstrap is more abstract
Please login to merge, or discard this patch.
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.