It’s 2016, you can use trait which will help you extend same class with multiple libraries.
I keep seeing container class get extended into another class, which then extends to another, before you know it you have extended 5 different classes just to use libraries.
What if you can include 5 different libraries into 1 object without extending? Well you can use it with php5.4 trait feature.
Container dependency injection trait class
namespace iBasit\ToolsBundle\Utils\Lib; use Doctrine\Bundle\DoctrineBundle\Registry; use Symfony\Component\DependencyInjection\ContainerInterface; trait Container { private $container; public function setContainer (ContainerInterface $container) { $this->container = $container; } /** * Shortcut to return the Doctrine Registry service. * * @return Registry * * @throws \LogicException If DoctrineBundle is not available */ protected function getDoctrine() { if (!$this->container->has('doctrine')) { throw new \LogicException('The DoctrineBundle is not registered in your application.'); } return $this->container->get('doctrine'); } /** * Get a user from the Security Token Storage. * * @return mixed * * @throws \LogicException If SecurityBundle is not available * * @see TokenInterface::getUser() */ protected function getUser() { if (!$this->container->has('security.token_storage')) { throw new \LogicException('The SecurityBundle is not registered in your application.'); } if (null === $token = $this->container->get('security.token_storage')->getToken()) { return; } if (!is_object($user = $token->getUser())) { // e.g. anonymous authentication return; } return $user; } /** * Returns true if the service id is defined. * * @param string $id The service id * * @return bool true if the service id is defined, false otherwise */ protected function has ($id) { return $this->container->has($id); } /** * Gets a container service by its id. * * @param string $id The service id * * @return object The service */ protected function get ($id) { if ('request' === $id) { @trigger_error('The "request" service is deprecated and will be removed in 3.0. Add a typehint for Symfony\\Component\\HttpFoundation\\Request to your controller parameters to retrieve the request instead.', E_USER_DEPRECATED); } return $this->container->get($id); } /** * Gets a container configuration parameter by its name. * * @param string $name The parameter name * * @return mixed */ protected function getParameter ($name) { return $this->container->getParameter($name); } }
Your custom object, which will be service.
namespace AppBundle\Utils; use iBasit\ToolsBundle\Utils\Lib\Container; class myObject { use Container; }
Your object service settings
myObject: class: AppBundle\Utils\myObject calls: - [setContainer, ["@service_container"]]
Call your service in controller
$myObject = $this->get('myObject');