Aimeos\ShopBundle\Service\Aimeos::get PHP Method

get() public method

Returns the Aimeos object.
public get ( ) : Aimeos
return Aimeos Aimeos object
    public function get()
    {
        if ($this->object === null) {
            $extDirs = (array) $this->container->getParameter('aimeos_shop.extdir');
            $this->object = new \Aimeos\Bootstrap($extDirs, false);
        }
        return $this->object;
    }