Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
35 | public static function logsSchemaUpdate(Event $event) |
||
36 | { |
||
37 | $options = static::getOptions($event); |
||
38 | $consoleDir = static::getConsoleDir($event, 'update logs schema'); |
||
39 | |||
40 | if (null === $consoleDir) { |
||
41 | return; |
||
42 | } |
||
43 | |||
44 | static::executeCommand($event, $consoleDir, 'norsys:logs:schema-update --force', $options['process-timeout']); |
||
45 | } |
||
47 |