| 1 | <?php | ||
| 18 | abstract class ElementCreate extends Action | ||
| 19 | { | ||
| 20 | use traits\Save; | ||
| 21 | |||
| 22 | /** | ||
| 23 | * @inheritdoc | ||
| 24 | * @return ElementInterface | ||
| 25 | */ | ||
| 26 | abstract protected function newElement(array $config = []): ElementInterface; | ||
| 27 | |||
| 28 | /** | ||
| 29 | * @inheritdoc | ||
| 30 | * @return ElementInterface | ||
| 31 | */ | ||
| 32 | public function run() | ||
| 36 | |||
| 37 | /** | ||
| 38 | * @inheritdoc | ||
| 39 | */ | ||
| 40 | public function statusCodeSuccess(): int | ||
| 44 | } | ||
| 45 |