for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Djunehor\Vtu;
use Illuminate\Filesystem\Filesystem;
use Illuminate\Support\ServiceProvider;
class VtuServiceProvider 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.
$publishTag = 'laravel-vtu';
if (app() instanceof \Illuminate\Foundation\Application) {
$this->publishes([
__DIR__.'/config/laravel-vtu.php' => config_path('laravel-vtu.php'),
], $publishTag);
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.