Completed
Push — master ( 4783ce...1821eb )
by Dennis
03:38
created

GraphInitializationBench   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 2
dl 0
loc 10
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A benchInitialization() 0 4 1
1
<?php
2
3
/**
4
 * (c) Dennis Meckel
5
 *
6
 * For the full copyright and license information,
7
 * please view the LICENSE file that was distributed with this source code.
8
 */
9
10
namespace Rayne\wz2008\Graph\Benchmark\Graph;
11
12
use Rayne\wz2008\Graph\Benchmark\InitializationCase;
13
use Rayne\wz2008\Graph\Factory\WzClassificationFactory;
14
15
class GraphInitializationBench extends InitializationCase
16
{
17
    /**
18
     * @inheritdoc
19
     */
20
    public function benchInitialization()
21
    {
22
        WzClassificationFactory::build();
23
    }
24
}
25