Failed Conditions
Pull Request — master (#18)
by Billie
09:05 queued 06:15
created
src/PurpleBooth/GitLintValidators/Message.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace PurpleBooth\GitLintValidators;
6 6
 
Please login to merge, or discard this patch.
Validator/SoftLimitTheTitleLengthTo50CharactersValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace PurpleBooth\GitLintValidators\Validator;
6 6
 
Please login to merge, or discard this patch.
GitLintValidators/Validator/CapitalizeTheSubjectLineValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace PurpleBooth\GitLintValidators\Validator;
6 6
 
Please login to merge, or discard this patch.
Validator/LimitTheBodyWrapLengthTo72CharactersValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace PurpleBooth\GitLintValidators\Validator;
6 6
 
Please login to merge, or discard this patch.
Validator/SeparateSubjectFromBodyWithABlankLineValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace PurpleBooth\GitLintValidators\Validator;
6 6
 
Please login to merge, or discard this patch.
GitLintValidators/Validator/LimitTheTitleLengthTo69CharactersValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace PurpleBooth\GitLintValidators\Validator;
6 6
 
Please login to merge, or discard this patch.
GitLintValidators/Validator/DoNotEndTheSubjectLineWithAPeriodValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace PurpleBooth\GitLintValidators\Validator;
6 6
 
Please login to merge, or discard this patch.
src/PurpleBooth/GitLintValidators/Validator/Validator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace PurpleBooth\GitLintValidators\Validator;
6 6
 
Please login to merge, or discard this patch.
src/PurpleBooth/GitLintValidators/Composer/Scripts.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace PurpleBooth\GitLintValidators\Composer;
6 6
 
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
             if (file_exists($hookFile)) {
76 76
                 $existingHookFile = copy(
77 77
                     $hookFile,
78
-                    $hookFile.self::BACKUP_EXTENSION
78
+                    $hookFile . self::BACKUP_EXTENSION
79 79
                 );
80 80
             }
81 81
 
Please login to merge, or discard this patch.