1 | <?php |
||
5 | class OpenGraphTag implements OpenGraphTagInterface |
||
6 | { |
||
7 | /** @var string */ |
||
8 | private $prefix; |
||
9 | |||
10 | /** @var string */ |
||
11 | private $property; |
||
12 | |||
13 | /** @var string */ |
||
14 | private $content; |
||
15 | |||
16 | |||
17 | /** |
||
18 | * Constructor |
||
19 | * |
||
20 | * @param string $prefix |
||
21 | * @param string $property |
||
22 | * @param string $content |
||
23 | */ |
||
24 | public function __construct($prefix, $property, $content) |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public function getPrefix() |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | public function getProperty() |
||
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | public function getContent() |
||
54 | } |
||
55 |