Skip to content

Commit 15dd036

Browse files
committed
Finish Housekeeping.
1 parent e726e24 commit 15dd036

4 files changed

Lines changed: 4 additions & 13 deletions

File tree

src/Control/Pattern.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
use ReflectionParameter;
77
use Vector\Core\Exception\ElementNotFoundException;
88
use Vector\Core\Exception\IncompletePatternMatchException;
9-
use Vector\Core\Exception\InvalidPatternMatchException;
109
use Vector\Core\Module;
1110
use Vector\Lib\Arrays;
1211

src/Core/Exception/InvalidPatternMatchException.php

Lines changed: 0 additions & 10 deletions
This file was deleted.

tests/Core/ModuleTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ function module_caching()
3030
// Loading the function should add it to the cache
3131
TestFunctions::using('notAPureFunction');
3232

33-
$cache = TestFunctions::getFulfillmentCache()['Vector\Test\Core\Stub\TestFunctions'];
33+
$cache = TestFunctions::getFulfillmentCache()[
34+
'Vector\Test\Core\Stub\TestFunctions'
35+
];
3436

3537
$this->assertArrayHasKey('__notAPureFunction', $cache);
3638
}

tests/Lib/Stub/TestFunctions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ protected static function __returnsTrue($a)
2323

2424
protected static function __invertsBool($a)
2525
{
26-
return !$a;
26+
return ! $a;
2727
}
2828

2929
protected static function __expectsNotNull($a)

0 commit comments

Comments
 (0)