@@ -20,25 +20,25 @@ discard block |
||
20 | 20 | { |
21 | 21 | return [ |
22 | 22 | // nth expected |
23 | - [0, 'th'], |
|
24 | - [1, 'st'], |
|
25 | - [2, 'nd'], |
|
26 | - [3, 'rd'], |
|
27 | - [4, 'th'], |
|
28 | - [5, 'th'], |
|
29 | - [6, 'th'], |
|
30 | - [7, 'th'], |
|
31 | - [8, 'th'], |
|
32 | - [9, 'th'], |
|
33 | - [10, 'th'], |
|
34 | - [11, 'th'], |
|
35 | - [12, 'th'], |
|
36 | - [13, 'th'], |
|
37 | - [14, 'th'], |
|
38 | - [21, 'st'], |
|
39 | - [22, 'nd'], |
|
40 | - [23, 'rd'], |
|
41 | - [24, 'th'], |
|
23 | + [0, 'th'], |
|
24 | + [1, 'st'], |
|
25 | + [2, 'nd'], |
|
26 | + [3, 'rd'], |
|
27 | + [4, 'th'], |
|
28 | + [5, 'th'], |
|
29 | + [6, 'th'], |
|
30 | + [7, 'th'], |
|
31 | + [8, 'th'], |
|
32 | + [9, 'th'], |
|
33 | + [10, 'th'], |
|
34 | + [11, 'th'], |
|
35 | + [12, 'th'], |
|
36 | + [13, 'th'], |
|
37 | + [14, 'th'], |
|
38 | + [21, 'st'], |
|
39 | + [22, 'nd'], |
|
40 | + [23, 'rd'], |
|
41 | + [24, 'th'], |
|
42 | 42 | [101, 'st'], |
43 | 43 | [102, 'nd'], |
44 | 44 | [103, 'rd'], |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | { |
51 | 51 | return [ |
52 | 52 | // nth exception class exception message |
53 | - [-1, InvalidArgumentException::class, '$nth must be a positive number'], |
|
53 | + [-1, InvalidArgumentException::class, '$nth must be a positive number'], |
|
54 | 54 | ]; |
55 | 55 | } |
56 | 56 |
@@ -15,7 +15,7 @@ |
||
15 | 15 | { |
16 | 16 | $class = get_parent_class($context); |
17 | 17 | |
18 | - return function () use ($class, $method) { |
|
18 | + return function() use ($class, $method) { |
|
19 | 19 | throw new UnMockedResponseException( |
20 | 20 | "$class::$method was called on mock without having its response mocked" |
21 | 21 | ); |
@@ -25,15 +25,15 @@ |
||
25 | 25 | { |
26 | 26 | return [ |
27 | 27 | // key index parsedKey, parsedIndex |
28 | - ['Thing', null, 'Thing', null], // no nth in key or index param |
|
29 | - ['1st Thing', null, 'Thing', 0], // 1st in key with no index param |
|
30 | - ['1st Thing', 0, 'Thing', 0], // nth in key with matching index param |
|
31 | - ['2nd Thing', null, 'Thing', 1], // 2nd in key with no index param |
|
32 | - ['3rd Thing', null, 'Thing', 2], // 3rd in key with no index param |
|
33 | - ['4th Thing', null, 'Thing', 3], // 3th in key with no index param |
|
34 | - ['478th Thing', null, 'Thing', 477], // high nth in key with no index param |
|
35 | - ['Thing', 0, 'Thing', 0], // no nth in key with 0 index param |
|
36 | - ['Thing', 49, 'Thing', 49], // no nth in key with high index param |
|
28 | + ['Thing', null, 'Thing', null], // no nth in key or index param |
|
29 | + ['1st Thing', null, 'Thing', 0], // 1st in key with no index param |
|
30 | + ['1st Thing', 0, 'Thing', 0], // nth in key with matching index param |
|
31 | + ['2nd Thing', null, 'Thing', 1], // 2nd in key with no index param |
|
32 | + ['3rd Thing', null, 'Thing', 2], // 3rd in key with no index param |
|
33 | + ['4th Thing', null, 'Thing', 3], // 3th in key with no index param |
|
34 | + ['478th Thing', null, 'Thing', 477], // high nth in key with no index param |
|
35 | + ['Thing', 0, 'Thing', 0], // no nth in key with 0 index param |
|
36 | + ['Thing', 49, 'Thing', 49], // no nth in key with high index param |
|
37 | 37 | ]; |
38 | 38 | } |
39 | 39 |
@@ -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->store->keyValueContains($key, "Doesn't matter", $index); |
55 | 55 | }); |
56 | 56 | |
@@ -62,8 +62,8 @@ discard block |
||
62 | 62 | { |
63 | 63 | return [ |
64 | 64 | // storedValue, checkedValue, expectedResult |
65 | - [ 'This is a value', 'is a', true ], |
|
66 | - [ 'This is a value', 'words', false ], |
|
65 | + ['This is a value', 'is a', true], |
|
66 | + ['This is a value', 'words', false], |
|
67 | 67 | ]; |
68 | 68 | } |
69 | 69 |
@@ -49,7 +49,7 @@ |
||
49 | 49 | /* @noinspection PhpUndefinedMethodInspection */ |
50 | 50 | Phake::when($this->key)->parse($key, $index)->thenThrow($exception); |
51 | 51 | |
52 | - $this->assertException($exception, function () use ($key, $index) { |
|
52 | + $this->assertException($exception, function() use ($key, $index) { |
|
53 | 53 | $this->store->get($key, $index); |
54 | 54 | }); |
55 | 55 |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | /* @noinspection PhpUndefinedMethodInspection */ |
28 | 28 | Phake::when($this->key)->parse($key, $index)->thenThrow($exception); |
29 | 29 | |
30 | - $this->assertException($exception, function () use ($key, $index) { |
|
30 | + $this->assertException($exception, function() use ($key, $index) { |
|
31 | 31 | $this->store->keyExists($key, $index); |
32 | 32 | }); |
33 | 33 | |
@@ -39,10 +39,10 @@ discard block |
||
39 | 39 | { |
40 | 40 | return [ |
41 | 41 | // key, index, expectedResult |
42 | - [ 'No such key', null, false ], // missing key |
|
43 | - [ StoreTest::KEY, 2, false ], // missing index |
|
44 | - [ StoreTest::KEY, null, true ], // present key |
|
45 | - [ StoreTest::KEY, 1, true ], // present index |
|
42 | + ['No such key', null, false], // missing key |
|
43 | + [StoreTest::KEY, 2, false], // missing index |
|
44 | + [StoreTest::KEY, null, true], // present key |
|
45 | + [StoreTest::KEY, 1, true], // present index |
|
46 | 46 | ]; |
47 | 47 | } |
48 | 48 |
@@ -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 |