Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
40 | public function handle() |
||
41 | { |
||
42 | $babel=new Babel(); |
||
43 | while (true) { |
||
44 | $time=date("Y-m-d H:i:s"); |
||
45 | $this->line("<fg=yellow>[$time] Processing: </>NOJ Babel Judge Sync"); |
||
46 | $babel->judge(); |
||
47 | $time=date("Y-m-d H:i:s"); |
||
48 | $this->line("<fg=green>[$time] Processed: </>NOJ Babel Judge Sync"); |
||
49 | sleep(5); |
||
50 | } |
||
53 |