| 1 | <?php |
||
| 10 | class DragonRepository extends EntityRepository |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @param mixed $id |
||
| 14 | * @param null $lockMode |
||
| 15 | * @param null $lockVersion |
||
| 16 | * @return Dragon |
||
| 17 | * @throws EntityNotFoundException |
||
| 18 | */ |
||
| 19 | public function find($id, $lockMode = null, $lockVersion = null): Dragon |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param Dragon $dragon |
||
| 33 | * @return $dragon |
||
|
|
|||
| 34 | * @throws \Doctrine\ORM\ORMException |
||
| 35 | * @throws \Doctrine\ORM\OptimisticLockException |
||
| 36 | */ |
||
| 37 | public function save(Dragon $dragon): Dragon |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @param Dragon $dragon |
||
| 49 | * @throws \Doctrine\ORM\OptimisticLockException |
||
| 50 | * @throws \Doctrine\ORM\ORMException |
||
| 51 | */ |
||
| 52 | public function delete(Dragon $dragon): void |
||
| 57 | } |
||
| 58 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.