1 | <?php declare(strict_types=1); |
||
30 | abstract class Method implements MethodInterface |
||
31 | { |
||
32 | /** |
||
33 | * @var callable |
||
34 | 27 | */ |
|
35 | private $staticMethod; |
||
36 | 27 | ||
37 | 27 | /** |
|
38 | 27 | * @param callable $staticMethod |
|
39 | 27 | */ |
|
40 | public function __construct(callable $staticMethod) |
||
50 | 27 | ||
51 | /** |
||
52 | * @inheritdoc |
||
53 | */ |
||
54 | public function getCallable(): callable |
||
58 | } |
||
59 |