| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 22 | public static function run() { |
||
| 23 | $app = new Music(); |
||
| 24 | |||
| 25 | $container = $app->getContainer(); |
||
| 26 | |||
| 27 | // remove orphaned entities |
||
| 28 | $container->query('Maintenance')->cleanUp(); |
||
| 29 | |||
| 30 | // remove expired sessions |
||
| 31 | $container->query('AmpacheSessionMapper')->cleanUp(); |
||
| 32 | |||
| 33 | // find covers - TODO performance stuff - maybe just call this once in an hour |
||
| 34 | $container->query('Scanner')->findAlbumCovers(); |
||
| 35 | } |
||
| 37 |