forked from summerblue/phphub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathartisan.php
27 lines (21 loc) · 814 Bytes
/
artisan.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?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.
|
*/
Artisan::add(new TopicMarkdownConvertionCommand);
Artisan::add(new TopicMakeExcerptCommand);
Artisan::add(new UserRenameCommand);
Artisan::add(new UserMigrateGithubUsernameCommand);
Artisan::add(new ReplyMarkdownCommand);
// Backing up database
Artisan::add(new DatabaseBackupCommand);
Artisan::add(new OpcacheClearCommand);
Artisan::add(new CacheAvatarsCommand);
Artisan::resolve('InstallCommand');