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