Scientist\Report::getName PHP Метод

getName() публичный Метод

Get the experiment name.
public getName ( ) : string
Результат string
    public function getName()
    {
        return $this->name;
    }

Usage Example

Пример #1
0
 public function test_that_report_can_hold_experiment_name()
 {
     $r = new Result();
     $rp = new Report('foo', $r, []);
     $this->assertEquals('foo', $rp->getName());
 }
All Usage Examples Of Scientist\Report::getName