Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
MultipointColumn | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
1 | <?php declare(strict_types=1); |
2 | /* |
3 | * This file is part of Aplus Framework Database Library. |
4 | * |
5 | * (c) Natan Felles <natanfelles@gmail.com> |
6 | * |
7 | * For the full copyright and license information, please view the LICENSE |
8 | * file that was distributed with this source code. |
9 | */ |
10 | namespace Framework\Database\Definition\Table\Columns\Geometry; |
11 | |
12 | use Framework\Database\Definition\Table\Columns\Column; |
13 | |
14 | /** |
15 | * Class MultipointColumn. |
16 | * |
17 | * @see https://mariadb.com/kb/en/multipoint/ |
18 | * |
19 | * @package database |
20 | */ |
21 | final class MultipointColumn extends Column |
22 | { |
23 | protected string $type = 'multipoint'; |
24 | } |