| 1 | <?php |
||
| 21 | class MagentoLogger implements LoggerInterface |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var array |
||
| 25 | */ |
||
| 26 | protected $calls = array(); |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return int |
||
| 30 | */ |
||
| 31 | public function start() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @param int $logNumber |
||
| 41 | * @param string $connection |
||
| 42 | * @param string $type |
||
| 43 | * @param string $output |
||
| 44 | * @param bool $onError |
||
| 45 | */ |
||
| 46 | public function stop($logNumber, $connection, $type, $output = '', $onError = false) |
||
| 58 | |||
| 59 | /** |
||
| 60 | * @return array |
||
| 61 | */ |
||
| 62 | public function getCalls() |
||
| 66 | } |