for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
/**
* This is the Laravel Zero Framework fake service provider class.
*
* @author Nuno Maduro <[email protected]>
*/
class FakeServiceProvider extends ServiceProvider
{
public function register()
$this->app->bind(
'foo',
function () {
return 'bar';
}
);