Conditions | 5 |
Paths | 12 |
Total Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function run($request) |
||
30 | { |
||
31 | if (!Director::is_cli()) echo '<pre>'; |
||
32 | echo "Start cleaning\n\n"; |
||
33 | |||
34 | /** @var Reservation $reservation */ |
||
35 | foreach (Reservation::get() as $reservation) { |
||
36 | if ($reservation->isDiscarded()) { |
||
37 | echo "Delete reservation {$reservation->ID}\n"; |
||
38 | $reservation->delete(); |
||
39 | } |
||
40 | } |
||
41 | |||
42 | echo "\n\nDone cleaning"; |
||
43 | if (!Director::is_cli()) echo '</pre>'; |
||
44 | } |
||
45 | } |
||
46 |