1 | <?php |
||
24 | class FacebookInstantArticlesFeed implements TenantAwareInterface, FacebookInstantArticlesFeedInterface |
||
25 | { |
||
26 | use TenantAwareTrait, TimestampableTrait; |
||
27 | |||
28 | /** |
||
29 | * @var int |
||
30 | */ |
||
31 | protected $id; |
||
32 | |||
33 | /** |
||
34 | * @var ContentListInterface |
||
35 | */ |
||
36 | protected $contentBucket; |
||
37 | |||
38 | /** |
||
39 | * @var PageInterface |
||
40 | */ |
||
41 | protected $facebookPage; |
||
42 | |||
43 | /** |
||
44 | * @var int |
||
45 | */ |
||
46 | protected $mode; |
||
47 | |||
48 | /** |
||
49 | * @return string |
||
50 | */ |
||
51 | public function getId() |
||
55 | |||
56 | /** |
||
57 | * {@inheritdoc} |
||
58 | */ |
||
59 | 2 | public function getContentBucket() |
|
63 | |||
64 | /** |
||
65 | * {@inheritdoc} |
||
66 | */ |
||
67 | 2 | public function setContentBucket(ContentListInterface $contentBucket) |
|
71 | |||
72 | /** |
||
73 | * {@inheritdoc} |
||
74 | */ |
||
75 | 2 | public function getFacebookPage() |
|
79 | |||
80 | /** |
||
81 | * {@inheritdoc} |
||
82 | */ |
||
83 | 2 | public function setFacebookPage(PageInterface $facebookPage) |
|
87 | |||
88 | /** |
||
89 | * {@inheritdoc} |
||
90 | */ |
||
91 | 2 | public function getMode() |
|
95 | |||
96 | /** |
||
97 | * {@inheritdoc} |
||
98 | */ |
||
99 | 2 | public function setMode($mode) |
|
103 | |||
104 | /** |
||
105 | * {@inheritdoc} |
||
106 | */ |
||
107 | public function isDevelopment() |
||
115 | } |
||
116 |