1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-14 15:13:29 +01:00
invoiceninja/app/Console/Commands/stubs/provider.stub

45 lines
784 B
Plaintext
Raw Normal View History

2016-12-08 14:41:35 +01:00
<?php
namespace $NAMESPACE$;
2016-12-09 13:02:29 +01:00
use App\Providers\AuthServiceProvider;
2016-12-08 14:41:35 +01:00
2016-12-09 13:02:29 +01:00
class $CLASS$ extends AuthServiceProvider
2016-12-08 14:41:35 +01:00
{
/**
* Indicates if loading of the provider is deferred.
*
* @var bool
*/
protected $defer = false;
2016-12-09 13:02:29 +01:00
/**
* The policy mappings for the application.
*
* @var array
*/
protected $policies = [
\Modules\$STUDLY_NAME$\Models\$STUDLY_NAME$::class => \Modules\$STUDLY_NAME$\Policies\$STUDLY_NAME$Policy::class,
];
2016-12-08 14:41:35 +01:00
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
//
}
/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides()
{
return [];
}
}