| 1 | <?php |
||
| 8 | class ContentProvider implements ContentProviderInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | private $content; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * ContentProvider constructor. |
||
| 17 | * |
||
| 18 | * @param string $content |
||
| 19 | */ |
||
| 20 | 4 | public function __construct($content) |
|
| 24 | |||
| 25 | /** |
||
| 26 | * {@inheritdoc} |
||
| 27 | */ |
||
| 28 | 2 | public function getContent() |
|
| 32 | } |
||
| 33 |