2013-07-25 16:33:04 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Register The Artisan Commands
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Each available Artisan command must be registered with the console so
|
|
|
|
| that it is available to be called. We'll register every command so
|
|
|
|
| the console gets access to each of the command object instances.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2013-08-18 22:39:29 -05:00
|
|
|
Artisan::add(new MigrateOldData);
|
2015-09-04 09:59:18 -07:00
|
|
|
Artisan::add(new RefreshCache);
|
2015-09-07 11:17:35 -07:00
|
|
|
Artisan::add(new RebuildTags);
|
2015-09-04 09:59:18 -07:00
|
|
|
Artisan::add(new ImportMLPMA);
|
2015-09-07 04:50:35 -07:00
|
|
|
Artisan::add(new ClassifyMLPMA);
|