1 | <?php |
||
13 | class MediaDynamicUrlMessage implements MessageInterface |
||
14 | { |
||
15 | use SiteAwareMessageTrait; |
||
16 | use IdentityAwareMessageTrait; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | private $format; |
||
22 | |||
23 | /** |
||
24 | * @return string |
||
25 | */ |
||
26 | public function getFormat(): string |
||
30 | |||
31 | /** |
||
32 | * @param string $format |
||
33 | */ |
||
34 | public function setFormat(string $format) |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | public function build() |
||
46 | } |
||
47 |