for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Djunehor\Logos;
use Illuminate\Filesystem\Filesystem;
use Illuminate\Support\ServiceProvider;
class BibleServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*
* @param Filesystem $filesystem
* @return void
*/
public function boot(Filesystem $filesystem)
$filesystem
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
}
* Register the application services.
public function register()
$this->app->bind('laravel-bible', function () {
return new Bible();
});
* Get the services provided by the provider.
* @return array
public function provides(): array
return ['laravel-bible'];
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.