PHP code example of sunaoka / laravel-facade-generator
1. Go to this page and download the library: Download sunaoka/laravel-facade-generator library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
sunaoka / laravel-facade-generator example snippets
return [
/*
|--------------------------------------------------------------------------
| Class names suffix
|
| Sets the string to be suffixed to the class name.
|--------------------------------------------------------------------------
*/
'suffix' => [
'facade' => '',
'service' => 'Service',
'provider' => 'ServiceProvider',
],
/*
|--------------------------------------------------------------------------
| Generate test
|
| If `false`, no test will be generated.
|--------------------------------------------------------------------------
*/
'test' => true,
];
namespace App\Facades;
use Illuminate\Support\Facades\Facade;
/**
* Class Foo
*
* @method static \Mockery\MockInterface spy() Convert the facade into a Mockery spy.
* @method static \Mockery\MockInterface partialMock() Initiate a partial mock on the facade.
* @method static \Mockery\Expectation shouldReceive(string|array ...$methodNames) Initiate a mock expectation on the facade.
* @method static void swap($instance) Hotswap the underlying instance behind the facade.
* @method static void clearResolvedInstance(string $name) Clear a resolved facade instance.
* @method static void clearResolvedInstances() Clear all of the resolved instances.
*
* @see \App\Services\FooService
*/
class Foo extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'Foo';
}
}
namespace App\Providers;
use App\Services\FooService;
use Illuminate\Support\ServiceProvider;
class FooServiceProvider extends ServiceProvider
{
/**
* Register services.
*
* @return void
*/
public function register()
{
$this->app->bind('Foo', FooService::class);
}
}