for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PHPHub\Providers;
use Illuminate\Support\ServiceProvider;
use PHPHub\Transformers\IncludeManager\IncludeManager;
class IncludeManagerProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*/
public function boot()
app()->singleton(IncludeManager::class, function ($app) {
$app
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
return new IncludeManager();
});
}
* Register the application services.
public function register()
//
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.