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

Ejemplo n.º 1
0
 public function addEnvInformation(Information $information)
 {
     $this->envInformations[$information->getName()] = $information;
 }
All Usage Examples Of PhpBench\Environment\Information::getName