1 | <?php |
||
23 | abstract class AbstractQuoteProvider implements QuoteProviderInterface { |
||
24 | |||
25 | /** |
||
26 | * Quotes. |
||
27 | * |
||
28 | * @var QuoteInterface[] |
||
29 | */ |
||
30 | protected $quotes; |
||
31 | |||
32 | /** |
||
33 | * Constructor. |
||
34 | */ |
||
35 | protected function __construct() { |
||
38 | |||
39 | /** |
||
40 | *{@inheritDoc} |
||
41 | */ |
||
42 | public function getAuthors() { |
||
57 | |||
58 | /** |
||
59 | * {@onheritDoc} |
||
60 | */ |
||
61 | public function getQuotes() { |
||
64 | |||
65 | /** |
||
66 | * Set the quotes. |
||
67 | * |
||
68 | * @param QuoteInterface[] $quotes The quotes. |
||
69 | * @return QuoteProviderInterface Returns this quote provider. |
||
70 | */ |
||
71 | protected function setQuotes(array $quotes) { |
||
75 | } |
||
76 |