mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
18 lines
381 B
Plaintext
18 lines
381 B
Plaintext
<?php
|
|
|
|
namespace $NAMESPACE$;
|
|
|
|
use App\Providers\AuthServiceProvider;
|
|
|
|
class $STUDLY_NAME$AuthProvider extends AuthServiceProvider
|
|
{
|
|
/**
|
|
* 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,
|
|
];
|
|
}
|