Neos\Flow\Core\ApplicationContext::getParent PHP Méthode

getParent() public méthode

Returns the parent context object, if any
public getParent ( ) : ApplicationContext
Résultat ApplicationContext the parent context or NULL, if there is none
    public function getParent()
    {
        return $this->parentContext;
    }

Usage Example

 /**
  * @test
  */
 public function parentContextIsConnectedRecursively()
 {
     $context = new ApplicationContext('Production/Foo/Bar');
     $parentContext = $context->getParent();
     $this->assertSame('Production/Foo', (string) $parentContext);
     $rootContext = $parentContext->getParent();
     $this->assertSame('Production', (string) $rootContext);
 }