for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Install GitHub App
<?php
namespace GiveBlood\Console\Commands;
use Illuminate\Foundation\Console\ProviderMakeCommand;
class MakeProviderCommand extends ProviderMakeCommand
{
/**
* The console command description.
*
* @var string
*/
protected $description = 'Create a new custom service provider class';
* The type of class being generated.
protected $type = 'Provider';
* Get the stub file for the generator.
* @return string
protected function getStub()
return __DIR__.'/stubs/provider.stub';
}
* Get the default namespace for the class.
* @param string $rootNamespace
protected function getDefaultNamespace($rootNamespace)
return $rootNamespace.'\Modules';