Updated command classes to include "Command" in name
This commit is contained in:
		
							parent
							
								
									c0620da9f8
								
							
						
					
					
						commit
						431aeefdda
					
				| 
						 | 
					@ -6,7 +6,7 @@ use BookStack\Uploads\ImageService;
 | 
				
			||||||
use Illuminate\Console\Command;
 | 
					use Illuminate\Console\Command;
 | 
				
			||||||
use Symfony\Component\Console\Output\OutputInterface;
 | 
					use Symfony\Component\Console\Output\OutputInterface;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class CleanupImages extends Command
 | 
					class CleanupImagesCommand extends Command
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * The name and signature of the console command.
 | 
					     * The name and signature of the console command.
 | 
				
			||||||
| 
						 | 
					@ -5,7 +5,7 @@ namespace BookStack\Console\Commands;
 | 
				
			||||||
use BookStack\Activity\Models\Activity;
 | 
					use BookStack\Activity\Models\Activity;
 | 
				
			||||||
use Illuminate\Console\Command;
 | 
					use Illuminate\Console\Command;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class ClearActivity extends Command
 | 
					class ClearActivityCommand extends Command
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * The name and signature of the console command.
 | 
					     * The name and signature of the console command.
 | 
				
			||||||
| 
						 | 
					@ -5,7 +5,7 @@ namespace BookStack\Console\Commands;
 | 
				
			||||||
use BookStack\Entities\Models\PageRevision;
 | 
					use BookStack\Entities\Models\PageRevision;
 | 
				
			||||||
use Illuminate\Console\Command;
 | 
					use Illuminate\Console\Command;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class ClearRevisions extends Command
 | 
					class ClearRevisionsCommand extends Command
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * The name and signature of the console command.
 | 
					     * The name and signature of the console command.
 | 
				
			||||||
| 
						 | 
					@ -5,7 +5,7 @@ namespace BookStack\Console\Commands;
 | 
				
			||||||
use BookStack\Activity\Models\View;
 | 
					use BookStack\Activity\Models\View;
 | 
				
			||||||
use Illuminate\Console\Command;
 | 
					use Illuminate\Console\Command;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class ClearViews extends Command
 | 
					class ClearViewsCommand extends Command
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * The name and signature of the console command.
 | 
					     * The name and signature of the console command.
 | 
				
			||||||
| 
						 | 
					@ -6,7 +6,7 @@ use BookStack\Entities\Models\Bookshelf;
 | 
				
			||||||
use BookStack\Entities\Tools\PermissionsUpdater;
 | 
					use BookStack\Entities\Tools\PermissionsUpdater;
 | 
				
			||||||
use Illuminate\Console\Command;
 | 
					use Illuminate\Console\Command;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class CopyShelfPermissions extends Command
 | 
					class CopyShelfPermissionsCommand extends Command
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * The name and signature of the console command.
 | 
					     * The name and signature of the console command.
 | 
				
			||||||
| 
						 | 
					@ -10,7 +10,7 @@ use Illuminate\Support\Str;
 | 
				
			||||||
use Illuminate\Validation\Rules\Password;
 | 
					use Illuminate\Validation\Rules\Password;
 | 
				
			||||||
use Illuminate\Validation\Rules\Unique;
 | 
					use Illuminate\Validation\Rules\Unique;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class CreateAdmin extends Command
 | 
					class CreateAdminCommand extends Command
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * The name and signature of the console command.
 | 
					     * The name and signature of the console command.
 | 
				
			||||||
| 
						 | 
					@ -6,7 +6,7 @@ use BookStack\Users\Models\User;
 | 
				
			||||||
use BookStack\Users\UserRepo;
 | 
					use BookStack\Users\UserRepo;
 | 
				
			||||||
use Illuminate\Console\Command;
 | 
					use Illuminate\Console\Command;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class DeleteUsers extends Command
 | 
					class DeleteUsersCommand extends Command
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * The name and signature of the console command.
 | 
					     * The name and signature of the console command.
 | 
				
			||||||
| 
						 | 
					@ -7,7 +7,7 @@ use BookStack\Activity\Models\Comment;
 | 
				
			||||||
use Illuminate\Console\Command;
 | 
					use Illuminate\Console\Command;
 | 
				
			||||||
use Illuminate\Support\Facades\DB;
 | 
					use Illuminate\Support\Facades\DB;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class RegenerateCommentContent extends Command
 | 
					class RegenerateCommentContentCommand extends Command
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * The name and signature of the console command.
 | 
					     * The name and signature of the console command.
 | 
				
			||||||
| 
						 | 
					@ -6,7 +6,7 @@ use BookStack\Permissions\JointPermissionBuilder;
 | 
				
			||||||
use Illuminate\Console\Command;
 | 
					use Illuminate\Console\Command;
 | 
				
			||||||
use Illuminate\Support\Facades\DB;
 | 
					use Illuminate\Support\Facades\DB;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class RegeneratePermissions extends Command
 | 
					class RegeneratePermissionsCommand extends Command
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * The name and signature of the console command.
 | 
					     * The name and signature of the console command.
 | 
				
			||||||
| 
						 | 
					@ -6,7 +6,7 @@ use BookStack\References\ReferenceStore;
 | 
				
			||||||
use Illuminate\Console\Command;
 | 
					use Illuminate\Console\Command;
 | 
				
			||||||
use Illuminate\Support\Facades\DB;
 | 
					use Illuminate\Support\Facades\DB;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class RegenerateReferences extends Command
 | 
					class RegenerateReferencesCommand extends Command
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * The name and signature of the console command.
 | 
					     * The name and signature of the console command.
 | 
				
			||||||
| 
						 | 
					@ -7,7 +7,7 @@ use BookStack\Search\SearchIndex;
 | 
				
			||||||
use Illuminate\Console\Command;
 | 
					use Illuminate\Console\Command;
 | 
				
			||||||
use Illuminate\Support\Facades\DB;
 | 
					use Illuminate\Support\Facades\DB;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class RegenerateSearch extends Command
 | 
					class RegenerateSearchCommand extends Command
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * The name and signature of the console command.
 | 
					     * The name and signature of the console command.
 | 
				
			||||||
| 
						 | 
					@ -5,7 +5,7 @@ namespace BookStack\Console\Commands;
 | 
				
			||||||
use BookStack\Users\Models\User;
 | 
					use BookStack\Users\Models\User;
 | 
				
			||||||
use Illuminate\Console\Command;
 | 
					use Illuminate\Console\Command;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class ResetMfa extends Command
 | 
					class ResetMfaCommand extends Command
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * The name and signature of the console command.
 | 
					     * The name and signature of the console command.
 | 
				
			||||||
| 
						 | 
					@ -5,7 +5,7 @@ namespace BookStack\Console\Commands;
 | 
				
			||||||
use Illuminate\Console\Command;
 | 
					use Illuminate\Console\Command;
 | 
				
			||||||
use Illuminate\Database\Connection;
 | 
					use Illuminate\Database\Connection;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class UpdateUrl extends Command
 | 
					class UpdateUrlCommand extends Command
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * The name and signature of the console command.
 | 
					     * The name and signature of the console command.
 | 
				
			||||||
| 
						 | 
					@ -5,7 +5,7 @@ namespace BookStack\Console\Commands;
 | 
				
			||||||
use Illuminate\Console\Command;
 | 
					use Illuminate\Console\Command;
 | 
				
			||||||
use Illuminate\Support\Facades\DB;
 | 
					use Illuminate\Support\Facades\DB;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class UpgradeDatabaseEncoding extends Command
 | 
					class UpgradeDatabaseEncodingCommand extends Command
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * The name and signature of the console command.
 | 
					     * The name and signature of the console command.
 | 
				
			||||||
		Loading…
	
		Reference in New Issue