| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public function handle() |
||
| 18 | { |
||
| 19 | $base_path = base_path(); |
||
| 20 | $task = "* * * * * cd $base_path && php artisan schedule:run >> /dev/null 2>&1"; |
||
| 21 | exec('(crontab -l 2>/dev/null; echo "'.$task.'") | crontab -'); |
||
| 22 | |||
| 23 | return 'Base cron task for scheduling work created. Task: '.$task; |
||
| 24 | } |
||
| 25 | } |
||
| 26 |