lyal /
checkr
| 1 | <?php |
||
| 2 | |||
| 3 | namespace Lyal\Checkr\Entities\Resources; |
||
| 4 | |||
| 5 | use Lyal\Checkr\Client; |
||
| 6 | use Lyal\Checkr\Traits\Creatable; |
||
| 7 | use Lyal\Checkr\Traits\Deleteable; |
||
| 8 | use Lyal\Checkr\Traits\Listable; |
||
| 9 | |||
| 10 | class Invitation extends AbstractResource |
||
| 11 | { |
||
| 12 | use Listable, Creatable, Deleteable; |
||
|
0 ignored issues
–
show
introduced
by
Loading history...
|
|||
| 13 | |||
| 14 | /** |
||
| 15 | * Invitation constructor. |
||
| 16 | * |
||
| 17 | * @param array|null $values |
||
| 18 | * @param Client|null $client |
||
| 19 | */ |
||
| 20 | public function __construct($values = null, Client $client = null) |
||
| 21 | { |
||
| 22 | parent::__construct($values, $client); |
||
| 23 | } |
||
| 24 | } |
||
| 25 |