BaseFactory.php 451B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace Muzich\CoreBundle\ElementFactory\Site\base;
  3. use Muzich\CoreBundle\Entity\Element;
  4. use Symfony\Component\DependencyInjection\Container;
  5. use \Exception;
  6. /**
  7. *
  8. * @author bux
  9. */
  10. class BaseFactory implements FactoryInterface
  11. {
  12. protected $element;
  13. public function __construct(Element $element, Container $container)
  14. {
  15. $this->element = $element;
  16. }
  17. public function getEmbedCode()
  18. {
  19. return null;
  20. }
  21. }
  22. ?>