Completed
Push — master ( 14a06b...6322f3 )
by Nelson
05:31
created

StrictObjectTestProvider::badConstructorArgumentsProvider()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php declare(strict_types=1);
2
/**
3
 * PHP: Nelson Martell Library file
4
 *
5
 * Copyright © 2016-2019 Nelson Martell (http://nelson6e65.github.io)
6
 *
7
 * Licensed under The MIT License (MIT)
8
 * For full copyright and license information, please see the LICENSE
9
 * Redistributions of files must retain the above copyright notice.
10
 *
11
 * @copyright 2016-2019 Nelson Martell
12
 * @link      http://nelson6e65.github.io/php_nml/
13
 * @since     0.6.0
14
 * @license   http://www.opensource.org/licenses/mit-license.php The MIT License (MIT)
15
 * */
16
17
namespace NelsonMartell\Test\DataProviders;
18
19
use NelsonMartell\StrictObject;
20
21
use NelsonMartell\Test\Helpers\ExporterPlugin;
22
use NelsonMartell\Test\Helpers\IComparerTester;
23
24
/**
25
 *
26
 * @author Nelson Martell <[email protected]>
27
 * @since  0.6.0
28
 * @internal
29
 * */
30
trait StrictObjectTestProvider
31
{
32
    use ExporterPlugin;
33
34
    public function getTargetClassName() : string
35
    {
36
        return StrictObject::class;
37
    }
38
}
39