src/Model/Vat/Vat.php line 18

Open in your IDE?
  1. <?php
  2. namespace App\Model\Vat;
  3. use ApiPlatform\Core\Annotation\ApiResource;
  4. use App\Model\Params\Params;
  5. /**
  6.  * @ApiResource(
  7.  *     collectionOperations={
  8.  *         "get",
  9.  *     },
  10.  *     itemOperations={
  11.  *         "get"
  12.  *     }
  13.  * )
  14.  */
  15. class Vat extends Params
  16. {
  17. }