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

getName() public method

public getName ( )
    public function getName()
    {
        return 'port';
    }

Usage Example

 public function testGetName()
 {
     $matcher = new PortMatcher(array('port' => '8080', 'scheme' => 'http'), array());
     $this->assertSame('port', $matcher->getName());
 }