| @@ -1,5 +1,5 @@ | ||
| 1 | 1 | <?php | 
| 2 | -declare(strict_types=1); | |
| 2 | +declare(strict_types = 1); | |
| 3 | 3 | |
| 4 | 4 | namespace Nexendrie\SiteGenerator; | 
| 5 | 5 | |
| @@ -185,7 +185,7 @@ discard block | ||
| 185 | 185 | $path = str_replace($this->source, "", $asset); | 
| 186 | 186 | $target = "$this->output$path"; | 
| 187 | 187 | FileSystem::copy($asset, $target); | 
| 188 | - echo "Copied $path"; | |
| 188 | + echo "copied $path"; | |
| 189 | 189 | } | 
| 190 | 190 | } | 
| 191 | 191 | |
| @@ -225,7 +225,7 @@ discard block | ||
| 225 | 225 |        $basename = $file->getBasename(".md") . ".html"; | 
| 226 | 226 | $filename = "$this->output$path/$basename"; | 
| 227 | 227 | FileSystem::write($filename, $html); | 
| 228 | - echo "Created $path/$basename\n"; | |
| 228 | + echo "created $path/$basename\n"; | |
| 229 | 229 | $this->onCreatePage($html, $this, $file->getRealPath()); | 
| 230 | 230 | } | 
| 231 | 231 | $this->onAfterGenerate(); | 
| @@ -1,11 +1,11 @@ | ||
| 1 | 1 | <?php | 
| 2 | -declare(strict_types=1); | |
| 2 | +declare(strict_types = 1); | |
| 3 | 3 | |
| 4 | 4 | namespace Nexendrie\SiteGenerator; | 
| 5 | 5 | |
| 6 | 6 |  function findVendorDirectory(): string { | 
| 7 | 7 | $recursionLimit = 10; | 
| 8 | -  $findVendor = function ($dirName = "vendor/bin", $dir = __DIR__) use (&$findVendor, &$recursionLimit) { | |
| 8 | +  $findVendor = function($dirName = "vendor/bin", $dir = __DIR__) use (&$findVendor, &$recursionLimit) { | |
| 9 | 9 |      if(!$recursionLimit--) { | 
| 10 | 10 |        throw new \Exception("Cannot find vendor directory."); | 
| 11 | 11 | } | 
| @@ -1,5 +1,5 @@ | ||
| 1 | 1 | <?php | 
| 2 | -declare(strict_types=1); | |
| 2 | +declare(strict_types = 1); | |
| 3 | 3 | |
| 4 | 4 | namespace Nexendrie\SiteGenerator; | 
| 5 | 5 | |
| @@ -1,5 +1,5 @@ | ||
| 1 | 1 | <?php | 
| 2 | -declare(strict_types=1); | |
| 2 | +declare(strict_types = 1); | |
| 3 | 3 | |
| 4 | 4 | namespace Nexendrie\SiteGenerator; | 
| 5 | 5 | |