Completed
Push — master ( 0214c5...e61235 )
by Alessandro
05:24
created
config/pre-commit.php 2 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -18,8 +18,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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');
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.