| Total Complexity | 6 |
| Total Lines | 66 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | final class ClosuresTest extends TestCase |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @test |
||
| 16 | * @covers ::filter |
||
| 17 | */ |
||
| 18 | public function filterAllowNullAndNullValue() |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @test |
||
| 26 | * @covers ::filter |
||
| 27 | */ |
||
| 28 | public function filterAllowNullIsFalseAndNullValue() |
||
| 29 | { |
||
| 30 | $this->expectException(FilterException::class); |
||
| 31 | Closures::filter(null, true); |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @test |
||
| 36 | * @covers ::filter |
||
| 37 | */ |
||
| 38 | public function filterClosure() |
||
| 39 | { |
||
| 40 | $closureFunction = function () { |
||
| 41 | return 'do nothing'; |
||
| 42 | }; |
||
| 43 | $result = Closures::filter($closureFunction); |
||
| 44 | $this->assertTrue($result instanceof \Closure); |
||
| 45 | } |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @test |
||
| 49 | * @covers ::filter |
||
| 50 | */ |
||
| 51 | public function filterCallable() |
||
| 58 | } |
||
| 59 | |||
| 60 | /** |
||
| 61 | * @test |
||
| 62 | * @covers ::filter |
||
| 63 | */ |
||
| 64 | public function filterNotCallableString() |
||
| 65 | { |
||
| 66 | $this->expectException(FilterException::class); |
||
| 67 | Closures::filter('string'); |
||
| 68 | } |
||
| 69 | |||
| 70 | /** |
||
| 71 | * @test |
||
| 72 | * @covers ::filter |
||
| 73 | */ |
||
| 74 | public function filterNotCallableInt() |
||
| 78 | } |
||
| 79 | } |
||
| 80 |
This check looks for function or method calls that always return null and whose return value is assigned to a variable.
The method
getObject()can return nothing but null, so it makes no sense to assign that value to a variable.The reason is most likely that a function or method is imcomplete or has been reduced for debug purposes.