1 | <?php |
||
27 | final class Execute implements Runnable |
||
28 | { |
||
29 | /** @var MethodInvocation */ |
||
30 | private $invocation; |
||
31 | |||
32 | /** |
||
33 | * Execute constructor. |
||
34 | * |
||
35 | * @param MethodInvocation $invocation |
||
36 | */ |
||
37 | public function __construct(MethodInvocation $invocation) |
||
41 | |||
42 | /** |
||
43 | * @param DatabaseManager $databaseManager |
||
44 | * @param string $exceptionName |
||
45 | * @param callable $invoker |
||
46 | * |
||
47 | * @return object |
||
48 | */ |
||
49 | public function __invoke(DatabaseManager $databaseManager, $exceptionName, callable $invoker) |
||
53 | } |
||
54 |