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
{
* Register composer service.
* @return void
public function register(): void
$this->app->bind(
'foo',
function () {
return 'bar';
}
);