SizeTrait   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
getEdgeSet() 0 1 ?
A getSize() 0 4 1
1
<?php
2
3
/*
4
 * This file is part of the bisarca/graph package.
5
 *
6
 * (c) Emanuele Minotto <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Bisarca\Graph\Graph\Descriptor;
13
14
use Bisarca\Graph\Edge\Set;
15
16
trait SizeTrait
17
{
18
    /**
19
     * Gets the edges set.
20
     *
21
     * @return Set
22
     */
23
    abstract public function getEdgeSet(): Set;
24
25
    /**
26
     * Gets the number of edges in a graph.
27
     *
28
     * @return int
29
     */
30
    public function getSize(): int
31
    {
32
        return count($this->getEdgeSet());
33
    }
34
}
35