PhpBench\Environment\Information::getName PHP Méthode

getName() public méthode

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
Résultat string
    public function getName()
    {
        return $this->name;
    }

Usage Example

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