eZ\Publish\Core\MVC\Symfony\SiteAccess\Matcher\HostText::getName PHP Method

getName() public method

public getName ( )
    public function getName()
    {
        return 'host:text';
    }

Usage Example

 public function testGetName()
 {
     $matcher = new HostTextMatcher(array('host' => 'foo'), array());
     $this->assertSame('host:text', $matcher->getName());
 }