Clause   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 4
Bugs 0 Features 0
Metric Value
eloc 1
c 4
b 0
f 0
dl 0
loc 4
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace LaravelFreelancerNL\FluentAQL\Clauses;
6
7
use LaravelFreelancerNL\FluentAQL\QueryElement;
8
9
/**
10
 * Class Clause.
11
 *
12
 * Data & formatting objects for AQL Clauses.
13
 *
14
 * @SuppressWarnings(PHPMD.NumberOfChildren)
15
 */
16
abstract class Clause extends QueryElement
17
{
18
    public function __construct()
19
    {
20
    }
21
}
22