Completed
Push — master ( 3c4ae0...b6652e )
by Alex
05:14
created

IsOK   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
isOK() 0 1 ?
A isStructureOK() 0 4 1
1
<?php
2
namespace AlgoWeb\ODataMetadata;
3
4
use AlgoWeb\ODataMetadata\IsOKTraits\IsOKToolboxTrait;
5
6
abstract class IsOK
7
{
8
    use IsOKToolboxTrait;
9
10
    abstract public function isOK(&$msg = null);
11
12
    public function isStructureOK(&$msg = null)
0 ignored issues
show
Unused Code introduced by
The parameter $msg is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
13
    {
14
        return true;
15
    }
16
}
17