/** * @return Container */ protected function getContainer() { if ($this->container === null) { $this->container = Container::create(); } return $this->container; }
public function testFilesystemService() { $container = Container::create(); $this->assertInstanceOf('Bcn\\MageBuild\\Util\\Filesystem', $container->getFilesystem()); }