19 lines
240 B
Plaintext
19 lines
240 B
Plaintext
|
<?php
|
||
|
|
||
|
namespace $NAMESPACE$;
|
||
|
|
||
|
use Illuminate\Auth\Access\HandlesAuthorization;
|
||
|
|
||
|
class $CLASS$
|
||
|
{
|
||
|
use HandlesAuthorization;
|
||
|
|
||
|
/**
|
||
|
* Create a new policy instance.
|
||
|
*/
|
||
|
public function __construct()
|
||
|
{
|
||
|
//
|
||
|
}
|
||
|
}
|