Passed
Pull Request — master (#1904)
by
unknown
63:03
created
app/Controllers/PageDisplayController.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 WMDE\Fundraising\Frontend\App\Controllers;
6 6
 
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 		}
28 28
 
29 29
 		try {
30
-			return $this->getPageTemplate( $pageId )->render( [ 'page_id' => $pageId ] );
30
+			return $this->getPageTemplate( $pageId )->render( ['page_id' => $pageId] );
31 31
 		}
32 32
 		catch ( \Twig_Error_Runtime $exception ) {
33 33
 			if ( $exception->getPrevious() instanceof ContentNotFoundException ) {
Please login to merge, or discard this patch.
app/Controllers/SofortNotificationController.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 WMDE\Fundraising\Frontend\App\Controllers;
6 6
 
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 		try {
28 28
 			$useCaseRequest = $this->newUseCaseRequest();
29 29
 		} catch ( UnexpectedValueException $e ) {
30
-			$this->logWebRequest( [ 'message' => $e->getMessage() ], LogLevel::ERROR );
30
+			$this->logWebRequest( ['message' => $e->getMessage()], LogLevel::ERROR );
31 31
 			return new Response( 'Bad request', Response::HTTP_BAD_REQUEST );
32 32
 		}
33 33
 
Please login to merge, or discard this patch.
app/Controllers/ConfirmSubscriptionController.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 WMDE\Fundraising\Frontend\App\Controllers;
6 6
 
Please login to merge, or discard this patch.
app/Controllers/AddCommentController.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 WMDE\Fundraising\Frontend\App\Controllers;
6 6
 
Please login to merge, or discard this patch.
app/Controllers/ListCommentsController.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 WMDE\Fundraising\Frontend\App\Controllers;
6 6
 
Please login to merge, or discard this patch.