Passed
Push — 1.0.0 ( c6f014...c92f46 )
by Alex
01:36
created
tests/Collection/PhoneNumberCollectionTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,11 +37,11 @@  discard block
 block discarded – undo
37 37
         );
38 38
         $this->assertEquals(3, count($phoneNumberCollection));
39 39
 
40
-        for($i = 0; $i < 3; $i++) {
40
+        for ($i = 0; $i < 3; $i++) {
41 41
             $this->assertEquals($phoneNumberArray[$i], $phoneNumberCollection[$i]);
42 42
         }
43 43
 
44
-        foreach($phoneNumberCollection as $key => $phoneNumber) {
44
+        foreach ($phoneNumberCollection as $key => $phoneNumber) {
45 45
             $this->assertInstanceOf(PhoneNumber::class, $phoneNumber);
46 46
         }
47 47
     }
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     public function testGivenAnInvalidValueItThrowsAnException(): void
63 63
     {
64 64
         $this->expectException(\InvalidArgumentException::class);
65
-        $this->expectExceptionMessage("Provided value is not a valid " . PhoneNumber::class);
65
+        $this->expectExceptionMessage("Provided value is not a valid ".PhoneNumber::class);
66 66
 
67 67
         $phoneNumber1 = new \stdClass();
68 68
 
Please login to merge, or discard this patch.