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