Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class Service |
||
18 | { |
||
19 | /** |
||
20 | * Set option value for use it from any application place |
||
21 | * |
||
22 | * @param string $event |
||
23 | * @param string $target |
||
24 | * @param array $data |
||
25 | * @return mixed |
||
26 | * @throws \Bluz\Db\Exception\DbException |
||
27 | * @throws \Bluz\Db\Exception\InvalidPrimaryKeyException |
||
28 | * @throws \Bluz\Db\Exception\TableNotFoundException |
||
29 | */ |
||
30 | public static function fire(string $event, string $target, array $data = []) |
||
40 |