ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilADTDBException.php
Go to the documentation of this file.
1 <?php
2 
3 declare(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 }