1 | <?php |
||
13 | class Embed extends AbstractModel |
||
14 | { |
||
15 | /** |
||
16 | * The metadata that defines this Model. |
||
17 | * |
||
18 | * @var EmbedMetadata |
||
19 | */ |
||
20 | protected $metadata; |
||
21 | |||
22 | /** |
||
23 | * Constructor. |
||
24 | * |
||
25 | * @param EmbedMetadata $metadata The internal embed metadata that supports this Embed. |
||
26 | * @param Store $store The model store service for handling persistence operations. |
||
27 | * @param array|null $properties The embed's properties from the db layer to init the embed with. New embeds will constructed with a null record. |
||
28 | */ |
||
29 | public function __construct(EmbedMetadata $metadata, Store $store, array $properties = null) |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | public function getCompositeKey() |
||
42 | |||
43 | /** |
||
44 | * Gets the unique hash for this embed. |
||
45 | * |
||
46 | * @return string |
||
47 | */ |
||
48 | public function getHash() |
||
86 | |||
87 | /** |
||
88 | * Gets the metadata for this model. |
||
89 | * |
||
90 | * @api |
||
91 | * @return EmbedMetadata |
||
92 | */ |
||
93 | public function getMetadata() |
||
97 | |||
98 | |||
99 | /** |
||
100 | * Gets the embed name. |
||
101 | * |
||
102 | * @api |
||
103 | * @return string |
||
104 | */ |
||
105 | public function getName() |
||
109 | } |
||
110 |
This check marks access to variables or properties that have not been declared yet. While PHP has no explicit notion of declaring a variable, accessing it before a value is assigned to it is most likely a bug.