| 1 | <?php |
||
| 20 | class GridHelper { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Get a CSS classname. |
||
| 24 | * |
||
| 25 | * @param string $size The size. |
||
| 26 | * @param int|null $value The value. |
||
| 27 | * @param string $suffix The suffix. |
||
| 28 | * @param int $min The min value. |
||
| 29 | * @param int $max The max value. |
||
| 30 | * @return string|null Returns the CSS classname. |
||
| 31 | */ |
||
| 32 | public static function getCSSClassname(string $size, ?int $value, string $suffix, int $min = 1, int $max = 12): ?string { |
||
| 50 | } |
||
| 51 |