Expect   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 32
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 4

Importance

Changes 4
Bugs 1 Features 0
Metric Value
wmc 3
c 4
b 1
f 0
lcom 1
cbo 4
dl 0
loc 32
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A configure() 0 9 2
A that() 0 6 1
1
<?php
2
3
/**
4
 * This file is part of expect package.
5
 *
6
 * (c) Noritaka Horio <[email protected]>
7
 *
8
 * This source file is subject to the MIT license that is bundled
9
 * with this source code in the file LICENSE.
10
 */
11
namespace expect;
12
13
use expect\configurator\DefaultConfigurator;
14
15
/**
16
 * Expect
17
 *
18
 * @author Noritaka Horio <[email protected]>
19
 * @copyright Noritaka Horio <[email protected]>
20
 */
21
final class Expect implements Configurable
22
{
23
    /**
24
     * @var \expect\ContextFactory
25
     */
26
    private static $contextFactory;
27
28
    /**
29
     * {@inheritdoc}
30
     */
31
    public static function configure(Configurator $configurator = null)
32
    {
33
        $useConfigurator = $configurator;
34
35
        if ($useConfigurator === null) {
36
            $useConfigurator = new DefaultConfigurator();
37
        }
38
        self::$contextFactory = $useConfigurator->configure();
39
    }
40
41
    /**
42
     * @param mixed $actual
43
     *
44
     * @return Context
45
     */
46
    public static function that($actual)
47
    {
48
        $context = self::$contextFactory->newContext();
49
50
        return $context->actual($actual);
51
    }
52
}
53