@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | /** @noinspection PhpUndefinedMethodInspection */ |
51 | 51 | Phake::when($this->key)->parse($key, $index)->thenThrow($exception); |
52 | 52 | |
53 | - $this->assertException($exception, function () use ($key, $index) { |
|
53 | + $this->assertException($exception, function() use ($key, $index) { |
|
54 | 54 | $this->assert->keyExists($key, $index); |
55 | 55 | }); |
56 | 56 | |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | Phake::when($this->key)->build($parsedKey, $parsedIndex)->thenReturn($key); |
74 | 74 | } |
75 | 75 | |
76 | - $this->assertException($exception, function () use ($key, $index) { |
|
76 | + $this->assertException($exception, function() use ($key, $index) { |
|
77 | 77 | $this->assert->keyExists($key, $index); |
78 | 78 | }); |
79 | 79 |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | /** @noinspection PhpUndefinedMethodInspection */ |
54 | 54 | Phake::when($this->key)->parse($key, $index)->thenThrow($exception); |
55 | 55 | |
56 | - $this->assertException($exception, function () use ($key, $value, $index) { |
|
56 | + $this->assertException($exception, function() use ($key, $value, $index) { |
|
57 | 57 | $this->assert->keyValueContains($key, $value, $index); |
58 | 58 | }); |
59 | 59 | |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | Phake::when($this->assert)->keyExists($parsedKey, $parsedIndex)->thenThrow($exception); |
76 | 76 | } |
77 | 77 | |
78 | - $this->assertException($exception, function () use ($key, $value, $index) { |
|
78 | + $this->assertException($exception, function() use ($key, $value, $index) { |
|
79 | 79 | $this->assert->keyValueContains($key, $value, $index); |
80 | 80 | }); |
81 | 81 | |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | Phake::when($this->key)->build($parsedKey, $parsedIndex)->thenReturn($key); |
103 | 103 | } |
104 | 104 | |
105 | - $this->assertException($exception, function () use ($key, $value, $index) { |
|
105 | + $this->assertException($exception, function() use ($key, $value, $index) { |
|
106 | 106 | $this->assert->keyValueContains($key, $value, $index); |
107 | 107 | }); |
108 | 108 |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | /** @noinspection PhpUndefinedMethodInspection */ |
56 | 56 | Phake::when($this->key)->parse($key, $index)->thenThrow($exception); |
57 | 57 | |
58 | - $this->assertException($exception, function () use ($key, $value, $index) { |
|
58 | + $this->assertException($exception, function() use ($key, $value, $index) { |
|
59 | 59 | $this->assert->keyValueIs($key, $value, $index); |
60 | 60 | }); |
61 | 61 | |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | Phake::when($this->assert)->keyExists($parsedKey, $parsedIndex)->thenThrow($exception); |
79 | 79 | } |
80 | 80 | |
81 | - $this->assertException($exception, function () use ($key, $value, $index) { |
|
81 | + $this->assertException($exception, function() use ($key, $value, $index) { |
|
82 | 82 | $this->assert->keyValueIs($key, $value, $index); |
83 | 83 | }); |
84 | 84 | |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | Phake::when($this->key)->build($parsedKey, $parsedIndex)->thenReturn($key); |
107 | 107 | } |
108 | 108 | |
109 | - $this->assertException($exception, function () use ($key, $value, $index) { |
|
109 | + $this->assertException($exception, function() use ($key, $value, $index) { |
|
110 | 110 | $this->assert->keyValueIs($key, $value, $index); |
111 | 111 | }); |
112 | 112 |
@@ -49,7 +49,7 @@ |
||
49 | 49 | /** @noinspection PhpUndefinedMethodInspection */ |
50 | 50 | Phake::when($this->key)->getOrdinal($nth)->thenThrow($exception); |
51 | 51 | |
52 | - $this->assertException($exception, function () use ($key, $index) { |
|
52 | + $this->assertException($exception, function() use ($key, $index) { |
|
53 | 53 | $this->key->build($key, $index); |
54 | 54 | }); |
55 | 55 |