Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
6 / 6
100.00% covered (success)
100.00%
3 / 3
CRAP
100.00% covered (success)
100.00%
1 / 1
Check
100.00% covered (success)
100.00%
6 / 6
100.00% covered (success)
100.00%
3 / 3
3
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
 renderCheck
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 sql
100.00% covered (success)
100.00%
3 / 3
100.00% covered (success)
100.00%
1 / 1
1
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 */
10namespace Framework\Database\Definition\Table;
11
12use Closure;
13use Framework\Database\Database;
14
15/**
16 * Class Check.
17 *
18 * @see https://mariadb.com/kb/en/constraint/#check-constraints
19 *
20 * @package database
21 */
22class Check extends DefinitionPart
23{
24    use Constraint;
25
26    protected Database $database;
27    protected Closure $check;
28
29    public function __construct(Database $database, Closure $check)
30    {
31        $this->database = $database;
32        $this->check = $check;
33    }
34
35    protected function renderCheck() : ?string
36    {
37        return ' CHECK (' . ($this->check)($this->database) . ')';
38    }
39
40    protected function sql() : string
41    {
42        $sql = $this->renderConstraint();
43        $sql .= $this->renderCheck();
44        return $sql;
45    }
46}