| 1 | <?php |
||
| 10 | class StaticContentRepository extends DocumentRepository implements StaticContentRepositoryInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | private $staticContentPath; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param DocumentManagerInterface $dm |
||
| 19 | * @param ClassMetadata $class |
||
| 20 | * @param string $staticContentPath |
||
| 21 | */ |
||
| 22 | public function __construct(DocumentManagerInterface $dm, ClassMetadata $class, $staticContentPath) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function findPublishedOneByName($name) |
||
| 43 | } |
||
| 44 |