| 1 | <?php |
||
| 16 | trait LookupElementTrait |
||
| 17 | { |
||
| 18 | use LookupTrait; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @inheritdoc |
||
| 22 | * @param ElementInterface $element |
||
| 23 | * @return ElementInterface|Response |
||
| 24 | */ |
||
| 25 | abstract protected function runInternal(ElementInterface $element); |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param int $id |
||
| 29 | * @return null|ElementInterface |
||
| 30 | */ |
||
| 31 | protected function findById(int $id) |
||
| 35 | } |
||
| 36 |