Completed
Push — master ( 975c17...8f2777 )
by Adam
04:20 queued 01:49
created

ArrayClosure::from()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 0
cts 3
cp 0
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 1
crap 2
1
<?php
2
3
namespace BestServedCold\PhalueObjects\ExtendedArray;
4
5
use BestServedCold\PhalueObjects\ValueObject\ArrayValueObject;
6
7
class ArrayClosure extends ArrayValueObject
0 ignored issues
show
Coding Style introduced by
ArrayClosure does not seem to conform to the naming convention (Utils?$).

This check examines a number of code elements and verifies that they conform to the given naming conventions.

You can set conventions for local variables, abstract classes, utility classes, constant, properties, methods, parameters, interfaces, classes, exceptions and special methods.

Loading history...
8
{
9
    public static function from(\Closure $closure)
10
    {
11
        
12
    }
13
}
14