for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Olyckne\Pug;
use GuzzleHttp\Client;
use Illuminate\Support\ServiceProvider;
class PugServiceProvider extends ServiceProvider {
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
$this->app->bind('Pug', 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 Pug(new Client);
});
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.