ILIAS  release_7 Revision v7.30-3-g800a261c036
Number.php
Go to the documentation of this file.
1<?php declare(strict_types=1);
2
3/* Copyright (c) 2020 Nils Haagen <nhaagen@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4
6
7interface Number extends Column
8{
9 public function withDecimals(int $number_of_decimals) : Number;
10 public function getDecimals() : int;
11}
An exception for terminatinating execution or to throw for unit testing.
A Column describes the form of presentation for a certain aspect of data, i.e.
Definition: Column.php:14
withDecimals(int $number_of_decimals)