Completed
Push — master ( 141360...6dcb9d )
by Adam
03:25
created

Image   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

3 Methods

Rating   Name   Duplication   Size   Complexity  
A toHex() 0 4 1
A toRgb() 0 4 1
A toBmp() 0 6 1
1
<?php namespace BestServedCold\PhalueObjects;
2
3
class Image extends ValueObject
4
{
5
    public function toHex()
6
    {
7
8
    }
9
10
    public function toRgb()
11
    {
12
13
    }
14
15
    public function toBmp()
16
    {
17
18
19
20
    }
21
22
}