use BookStack\Auth\Access\SocialAuthService;
use Illuminate\Console\Application;
use Illuminate\Console\Application as Artisan;
-use Illuminate\Contracts\Console\Kernel;
use Symfony\Component\Console\Command\Command;
class ThemeService
*/
public function registerCommand(Command $command)
{
- Artisan::starting(function(Application $application) use ($command) {
+ Artisan::starting(function (Application $application) use ($command) {
$application->addCommands([$command]);
});
}