1 | <?php |
||
9 | class Factory |
||
10 | { |
||
11 | /** |
||
12 | * Logging Action By Event |
||
13 | * |
||
14 | * @param \Sco\ActionLog\Events\AbstractEvent $event |
||
15 | * |
||
16 | * @return bool |
||
17 | */ |
||
18 | public function event(AbstractEvent $event) |
||
37 | |||
38 | /** |
||
39 | * Logging Action |
||
40 | * |
||
41 | * @param string $type |
||
42 | * @param string|array $content |
||
43 | * @param string $tableName |
||
44 | * |
||
45 | * @return bool |
||
46 | */ |
||
47 | public function info($type, $content, $tableName = '') |
||
66 | |||
67 | public function __call($method, $parameters) |
||
71 | |||
72 | |||
73 | public static function __callStatic($method, $parameters) |
||
77 | } |
||
78 |