clara/stubs/nwidart-stubs/provider.stub

29 lines
406 B
Plaintext
Raw Permalink Normal View History

2023-05-10 15:15:50 +00:00
<?php
namespace $NAMESPACE$;
use Illuminate\Support\ServiceProvider;
class $CLASS$ extends ServiceProvider
{
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
//
}
/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides()
{
return [];
}
}