private function applyTransient(ContainerInterface $container, MethodReflector $method)
 {
     if ($method->getDocBlock()->hasTag(self::DOC_TAG_TRANSIENT)) {
         $container->setTransient($method->getName());
     }
 }