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