Completed
Pull Request — master (#19)
by Tim
03:20
created
src/Utils/RandomInteger.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\BannerServer\Utils;
6 6
 
Please login to merge, or discard this patch.
tests/Utils/FakeRandomInteger.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\BannerServer\Tests\Utils;
6 6
 
Please login to merge, or discard this patch.
src/Utils/RandomIntegerInterface.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\BannerServer\Utils;
6 6
 
Please login to merge, or discard this patch.
tests/Unit/Controller/BannerSelectionControllerTest.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\BannerServer\Tests\Unit\Controller;
6 6
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 			[
55 55
 				BannerSelectionController::IMPRESSION_COUNT_COOKIE => self::VISITOR_TEST_IMPRESSION_COUNT,
56 56
 				BannerSelectionController::BUCKET_COOKIE => self::VISITOR_TEST_BUCKET,
57
-				BannerSelectionController::DONATED_COOKIE => self::VISITOR_TEST_DONATION_HISTORY ]
57
+				BannerSelectionController::DONATED_COOKIE => self::VISITOR_TEST_DONATION_HISTORY]
58 58
 		);
59 59
 	}
60 60
 
Please login to merge, or discard this patch.