diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2023-10-02 09:26:54 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2023-10-02 09:26:54 +0000 |
| commit | eb19fa6a076a8d211cd483afb01eeda6172d27e4 (patch) | |
| tree | 3eb6355b6918ceb0e2c9978cb5d98cb9f4458640 /lib/models/CacheType.php | |
| parent | fe64b827e2e503085c6f596eeed08d6ece36624b (diff) | |
fixes #3225
Closes #3225
Merge request studip/studip!2186
Diffstat (limited to 'lib/models/CacheType.php')
| -rw-r--r-- | lib/models/CacheType.php | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/models/CacheType.php b/lib/models/CacheType.php index 78b9994..d1a4ae1 100644 --- a/lib/models/CacheType.php +++ b/lib/models/CacheType.php @@ -13,11 +13,12 @@ * @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2 * @category Stud.IP * - * @property string cache_id database column - * @property string class_name database column - * @property string display_name database column - * @property int mkdate database column - * @property int chdate database column + * @property int $id alias column for cache_id + * @property int $cache_id database column + * @property string $class_name database column + * @property int|null $chdate database column + * @property int|null $mkdate database column + * @property mixed $display_name additional field */ class CacheType extends SimpleORMap |
