for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Djunehor\Sms;
use Illuminate\Filesystem\Filesystem;
use Illuminate\Support\ServiceProvider;
class SmsServiceProvider 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-sms';
if (app() instanceof \Illuminate\Foundation\Application) {
$this->publishes([
__DIR__.'/config/laravel-sms.php' => config_path('laravel-sms.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.