1 | <?php |
||
29 | class ColladaModelComponent extends ComponentAbstract implements ColladaModelCMPTIF |
||
30 | { |
||
31 | |||
32 | /** |
||
33 | * Initialize Component |
||
34 | * |
||
35 | * {@inheritdoc} |
||
36 | * |
||
37 | * @return bool |
||
38 | */ |
||
39 | 3 | public function initializeComponent(): bool |
|
44 | |||
45 | /** |
||
46 | * pointing to an asset that specifies the src or url() |
||
47 | * |
||
48 | * {@inheritdoc} |
||
49 | * |
||
50 | * @param null|string $src |
||
51 | * @return ColladaModelCMPTIF |
||
52 | */ |
||
53 | 2 | public function src(string $src = null): ColladaModelCMPTIF |
|
58 | |||
59 | /** |
||
60 | * Return DOM attribute contents |
||
61 | * |
||
62 | * @return string |
||
63 | */ |
||
64 | 1 | public function getDomAttributeString(): string |
|
70 | } |
||
71 |