ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilXMLResultSetColumn.php
Go to the documentation of this file.
1<?php
2
19declare(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}
Column Class for XMLResultSet.
__construct(int $index, string $name)