PhpBench\Environment\Information::getName PHP Method

getName() public method

If an information is mutually exclusive then it should use a standard name representing the category of the thing (e.g. "vcs"). This allows reports and such things to reference it reliably.
public getName ( ) : string
return string
    public function getName()
    {
        return $this->name;
    }

Usage Example

コード例 #1
0
ファイル: Suite.php プロジェクト: dantleech/phpbench
 public function addEnvInformation(Information $information)
 {
     $this->envInformations[$information->getName()] = $information;
 }
All Usage Examples Of PhpBench\Environment\Information::getName