blob: 050ca489ed7e96e70a58e386d4027c2975e62907 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?php
/* Icinga Web 2 X.509 Module | (c) 2023 Icinga GmbH | GPLv2 */
namespace Tests\Icinga\Module\X509\Lib;
use ipl\Orm\Model;
use ipl\Sql\Expression;
class TestModel extends Model
{
public const EXPRESSION = 'CASE WHEN 1 THEN YES ELSE NO';
public function getTableName()
{
return 'test';
}
public function getKeyName()
{
return 'id';
}
public function getColumns()
{
return [
'duration' => new Expression(static::EXPRESSION)
];
}
}
|