Jurisdiction   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
c 0
b 0
f 0
dl 0
loc 11
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A validate() 0 3 1
1
<?php
2
declare(strict_types=1);
3
/*
4
 * citeproc-php
5
 *
6
 * @link        http://github.com/seboettg/citeproc-php for the source repository
7
 * @copyright   Copyright (c) 2016 Sebastian Böttger.
8
 * @license     https://opensource.org/licenses/MIT
9
 */
10
11
namespace Seboettg\CiteProc\Constraint;
12
13
use stdClass;
14
15
class Jurisdiction implements Constraint
16
{
17
    /**
18
     * @codeCoverageIgnore
19
     * @param stdClass $data
20
     * @param int|null $citationNumber
21
     * @return bool
22
     */
23
    public function validate(stdClass $data, int $citationNumber = null): bool
24
    {
25
        return false;
26
    }
27
}
28