ILIAS  release_8 Revision v8.24
class.ilADTDBException.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
6{
7 protected string $col = '';
8
9 public function getColumn(): string
10 {
11 return $this->col;
12 }
13
14 public function setColumn(string $a_col): void
15 {
16 $this->col = $a_col;
17 }
18}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...