Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| MethodIsNotStaticException | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| __construct | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | namespace Apie\Core\Exceptions; |
| 3 | |
| 4 | use ReflectionMethod; |
| 5 | |
| 6 | final class MethodIsNotStaticException extends ApieException |
| 7 | { |
| 8 | public function __construct(ReflectionMethod $method) |
| 9 | { |
| 10 | parent::__construct(sprintf('Class method "%s" is not static!', $method->getName())); |
| 11 | } |
| 12 | } |