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