/**
  * @return ContainerMock|Container
  */
 public function createContainer()
 {
     $this->container = $this->prophesize(ContainerModel::class);
     $this->reflector = $this->prophesize(ContainerReflection::class);
     return new ContainerMock($this->container->reveal(), $this->reflector->reveal());
 }