1 | <?php |
||
20 | class CreateOrganization extends CreateElement |
||
21 | { |
||
22 | use PopulateOrganizationTrait; |
||
23 | |||
24 | /** |
||
25 | * @inheritdoc |
||
26 | * @return Organization|ElementInterface |
||
27 | */ |
||
28 | public function newElement(array $config = []): ElementInterface |
||
37 | |||
38 | /** |
||
39 | * @inheritdoc |
||
40 | * @param Organization $object |
||
41 | * @return Organization |
||
42 | * @throws \flipbox\craft\ember\exceptions\RecordNotFoundException |
||
43 | */ |
||
44 | public function populate(BaseObject $object): BaseObject |
||
51 | } |
||
52 |