VOArrayable
last analyzed

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 13
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
fromVOArray() 0 1 ?
toVOArray() 0 1 ?
1
<?php
2
3
namespace BestServedCold\PhalueObjects\Contract;
4
5
use BestServedCold\PhalueObjects\VOArray;
6
7
/**
8
 * Interface VOArrayable
9
 *
10
 * @package BestServedCold\PhalueObjects\Contract
11
 */
12
interface VOArrayable extends Arrayable
0 ignored issues
show
Coding Style introduced by
VOArrayable does not seem to conform to the naming convention (^[A-Z][a-zA-Z0-9]*Interface$).

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...
13
{
14
    /**
15
     * @param  VOArray $voArray
16
     * @return static
17
     */
18
    public static function fromVOArray(VOArray $voArray);
19
20
    /**
21
     * @return VOArray
22
     */
23
    public function toVOArray();
24
}
25