Passed
Pull Request — master (#95)
by Fèvre
12:08 queued 05:40
created
app/Http/Controllers/PageController.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -85,8 +85,8 @@
 block discarded – undo
85 85
         Mail::to(config('xetaravel.site.contact_email'))->send(new Contact($details));
86 86
 
87 87
         return redirect()
88
-           ->route('page.contact')
89
-           ->with('success', 'Thanks for contacting me ! I will answer you as fast as I can !');
88
+            ->route('page.contact')
89
+            ->with('success', 'Thanks for contacting me ! I will answer you as fast as I can !');
90 90
     }
91 91
 
92 92
     /**
Please login to merge, or discard this patch.
app/Markdown/GithubPullRequest/GithubPullRequestParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 final class GithubPullRequestParser implements InlineParserInterface
10 10
 {
11 11
     // Regex used to match Github pull request link.
12
-    public const REGEXP_PURLLREQUEST = '\bhttps?:\/\/github\.com\/(?<repo>[\w-]+\/[\w-]+)\/'.
12
+    public const REGEXP_PURLLREQUEST = '\bhttps?:\/\/github\.com\/(?<repo>[\w-]+\/[\w-]+)\/' .
13 13
         '(?<type>issues|pull)\/(?<issue>\d+)';
14 14
 
15 15
     public function getMatchDefinition(): InlineParserMatch
Please login to merge, or discard this patch.