FactoryInterface.php 303B

123456789101112131415161718
  1. <?php
  2. namespace Muzich\CoreBundle\ElementFactory\Site\base;
  3. use Muzich\CoreBundle\Entity\Element;
  4. use Symfony\Component\DependencyInjection\Container;
  5. interface FactoryInterface
  6. {
  7. public function __construct(Element $element, Container $container);
  8. public function getEmbedCode();
  9. }
  10. ?>