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

Return the cell names for this row.
public getNames ( ) : string[]
Результат string[]
Пример #1
0
 /**
  * It should return the names.
  */
 public function testNames()
 {
     $row = new Row(['one' => 1, 'two' => 2]);
     $this->assertEquals(['one', 'two'], $row->getNames());
 }