public function it_should_able_forget_instance(ContainerInterface $container, ConfigurationInterface $config)
 {
     $container->offsetUnset('Key')->shouldBeCalled();
     $this->offsetUnset('Key');
 }
Example #2
0
 /**
  * {@inheritdoc}
  */
 public function offsetUnset($offset)
 {
     $this->container->offsetUnset($offset);
 }