ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilXMLResultSetColumn.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
25 {
26  private string $name;
27  private int $index;
28 
29  public function __construct(int $index, string $name)
30  {
31  $this->name = $name;
32  $this->index = $index;
33  }
34 
35  public function getName(): string
36  {
37  return $this->name;
38  }
39 
40  public function getIndex(): int
41  {
42  return $this->index;
43  }
44 }
__construct(int $index, string $name)
Column Class for XMLResultSet.