Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
5 | class MethodEvent implements EventInterface |
||
6 | { |
||
7 | |||
8 | private string|object $className; |
||
9 | private string $methodName; |
||
10 | private array $arguments; |
||
11 | |||
12 | public function __construct(string|object $className, string $methodName, array $arguments) |
||
13 | { |
||
14 | $this->className = $className; |
||
15 | $this->methodName = $methodName; |
||
16 | $this->arguments = $arguments; |
||
17 | } |
||
18 | |||
19 | public function run(): mixed |
||
22 | } |
||
23 | } |