Hal\Application\Formater\Details\Cli::getName PHP Method

getName() public method

public getName ( )
    public function getName()
    {
        return 'Detailled CLI';
    }

Usage Example

示例#1
0
 public function testFormaterHasName()
 {
     $validator = $this->getMockBuilder('\\Hal\\Application\\Rule\\Validator')->disableOriginalConstructor()->getMock();
     $bounds = new Bounds();
     $formater = new Cli($validator, $bounds);
     $this->assertNotNull($formater->getName());
 }