| 1 | <?php |
||
| 8 | class RecentPosts implements WidgetInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var PostRepositoryInterface |
||
| 12 | */ |
||
| 13 | private $posts; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var Twig_Environment |
||
| 17 | */ |
||
| 18 | private $twig; |
||
| 19 | |||
| 20 | public function __construct(PostRepositoryInterface $posts, Twig_Environment $twig) |
||
| 25 | |||
| 26 | public function getName() |
||
| 30 | |||
| 31 | public function getHTML() |
||
| 37 | } |
||
| 38 |