Passed
Push — 1.0.0 ( 694a08...c923fa )
by Alex
01:31
created
tests/Collection/SlugCollectionTest.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($slugCollection));
39 39
 
40
-        for($i = 0; $i < 3; $i++) {
40
+        for ($i = 0; $i < 3; $i++) {
41 41
             $this->assertEquals($slugArray[$i], $slugCollection[$i]);
42 42
         }
43 43
 
44
-        foreach($slugCollection as $key => $slug) {
44
+        foreach ($slugCollection as $key => $slug) {
45 45
             $this->assertInstanceOf(Slug::class, $slug);
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 " . Slug::class);
65
+        $this->expectExceptionMessage("Provided value is not a valid ".Slug::class);
66 66
 
67 67
         $slug1 = new \stdClass();
68 68
 
Please login to merge, or discard this patch.