@@ -18,8 +18,8 @@ discard block |
||
18 | 18 | |
19 | 19 | if (! $included) { |
20 | 20 | echo 'You must set up the project dependencies, run the following commands:' . PHP_EOL |
21 | - . 'curl -sS https://getcomposer.org/installer | php' . PHP_EOL |
|
22 | - . 'php composer.phar install' . PHP_EOL; |
|
21 | + . 'curl -sS https://getcomposer.org/installer | php' . PHP_EOL |
|
22 | + . 'php composer.phar install' . PHP_EOL; |
|
23 | 23 | |
24 | 24 | exit(1); |
25 | 25 | } |
@@ -51,14 +51,14 @@ discard block |
||
51 | 51 | |
52 | 52 | // Add any reviews to the StaticReview instance, supports a fluent interface. |
53 | 53 | $review->addReview(new LineEndingsReview()) |
54 | - ->addReview(new PhpLintReview()) |
|
55 | - ->addReview(new ComposerLintReview()) |
|
56 | - ->addReview(new ComposerSecurityReview()) |
|
57 | - //PADOSOFT REVIEW |
|
58 | - ->addReview(new VarDumpReview()) |
|
59 | - ->addReview(new DdReview()) |
|
60 | - ->addReview(new PhpLeadingLineReviewNoBlade()) |
|
61 | - ; |
|
54 | + ->addReview(new PhpLintReview()) |
|
55 | + ->addReview(new ComposerLintReview()) |
|
56 | + ->addReview(new ComposerSecurityReview()) |
|
57 | + //PADOSOFT REVIEW |
|
58 | + ->addReview(new VarDumpReview()) |
|
59 | + ->addReview(new DdReview()) |
|
60 | + ->addReview(new PhpLeadingLineReviewNoBlade()) |
|
61 | + ; |
|
62 | 62 | |
63 | 63 | $codeSniffer = new PhpCodeSnifferReviewNoBlade(); |
64 | 64 | $codeSniffer->setOption('standard', 'PSR2'); |
@@ -16,7 +16,7 @@ |
||
16 | 16 | ? __DIR__ . '/../vendor/autoload.php' |
17 | 17 | : __DIR__ . '/../../../autoload.php'; |
18 | 18 | |
19 | -if (! $included) { |
|
19 | +if (!$included) { |
|
20 | 20 | echo 'You must set up the project dependencies, run the following commands:' . PHP_EOL |
21 | 21 | . 'curl -sS https://getcomposer.org/installer | php' . PHP_EOL |
22 | 22 | . 'php composer.phar install' . PHP_EOL; |