Completed
Pull Request — master (#16)
by Tim
26:43 queued 23:55
created
tests/Unit/Entity/BannerSelection/CampaignTest.php 1 patch
Spacing   +4 added lines, -4 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\Entity\BannerSelection;
6 6
 
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 			$this->createBuckets()
64 64
 		);
65 65
 		$this->assertEquals(
66
-			$campaign->selectBucket( 'C18_WMDE_Test_var', [ self::class, 'returnRandomBucket' ] )->getIdentifier(),
66
+			$campaign->selectBucket( 'C18_WMDE_Test_var', [self::class, 'returnRandomBucket'] )->getIdentifier(),
67 67
 			'C18_WMDE_Test_var'
68 68
 		);
69 69
 	}
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 			$this->createBuckets()
77 77
 		);
78 78
 		$this->assertEquals(
79
-			$campaign->selectBucket( 'C18_WMDE_Test_var_666', [ self::class, 'returnRandomBucket' ] )->getIdentifier(),
79
+			$campaign->selectBucket( 'C18_WMDE_Test_var_666', [self::class, 'returnRandomBucket'] )->getIdentifier(),
80 80
 			'C18_WMDE_Test_ctrl'
81 81
 		);
82 82
 	}
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 			$this->createBuckets()
90 90
 		);
91 91
 		$this->assertEquals(
92
-			$campaign->selectBucket( null, [ self::class, 'returnRandomBucket' ] )->getIdentifier(),
92
+			$campaign->selectBucket( null, [self::class, 'returnRandomBucket'] )->getIdentifier(),
93 93
 			'C18_WMDE_Test_ctrl'
94 94
 		);
95 95
 	}
Please login to merge, or discard this patch.
tests/Unit/Entity/BannerSelection/BucketTest.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\Unit\Entity\BannerSelection;
6 6
 
Please login to merge, or discard this patch.
tests/Unit/Entity/BannerSelection/CampaignCollectionTest.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\Unit\Entity\BannerSelection;
6 6
 
Please login to merge, or discard this patch.