File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ php artisan deploy:list namespace # List all tasks starting with `namespace:`
3131| ` artisan:migrate:rollback ` | Execute artisan migrate: rollback |
3232| ` artisan:migrate:status ` | Execute artisan migrate: status |
3333| ` artisan:optimize ` | Execute artisan optimize |
34- | ` artisan:optimize:clean ` | Execute artisan optimize: clean |
34+ | ` artisan:optimize:clear ` | Execute artisan optimize: clear |
3535| ` artisan:queue:restart ` | Execute artisan queue: restart |
3636| ` artisan:route:cache ` | Execute artisan route: cache |
3737| ` artisan:storage:link ` | Execute artisan storage: link |
Original file line number Diff line number Diff line change 4444desc ('Execute artisan optimize ' );
4545task ('artisan:optimize ' , artisan ('optimize ' , ['min ' => 5.7 ]));
4646
47- desc ('Execute artisan optimize:clean ' );
48- task ('artisan:optimize:clean ' , artisan ('optimize:clean ' , ['min ' => 5.7 ]));
47+ desc ('Execute artisan optimize:clear ' );
48+ task ('artisan:optimize:clear ' , artisan ('optimize:clear ' , ['min ' => 5.7 ]));
4949
5050desc ('Execute artisan queue:restart ' );
5151task ('artisan:queue:restart ' , artisan ('queue:restart ' ));
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ function it_should_list_all_available_tasks()
3636 $ this ->assertStringContainsString ('artisan:migrate:rollback ' , $ output );
3737 $ this ->assertStringContainsString ('artisan:migrate:status ' , $ output );
3838 $ this ->assertStringContainsString ('artisan:optimize ' , $ output );
39- $ this ->assertStringContainsString ('artisan:optimize:clean ' , $ output );
39+ $ this ->assertStringContainsString ('artisan:optimize:clear ' , $ output );
4040 $ this ->assertStringContainsString ('artisan:queue:restart ' , $ output );
4141 $ this ->assertStringContainsString ('artisan:route:cache ' , $ output );
4242 $ this ->assertStringContainsString ('artisan:storage:link ' , $ output );
Original file line number Diff line number Diff line change 2525task ('artisan:event:cache ' , function () {});
2626task ('artisan:config:cache ' , function () {});
2727task ('artisan:optimize ' , function () {});
28- task ('artisan:optimize:clean ' , function () {});
28+ task ('artisan:optimize:clear ' , function () {});
2929
3030// Mock public info task
3131task ('deploy:info_debug ' , ['deploy:info ' ]);
You can’t perform that action at this time.
0 commit comments