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

IsOK::isOK()

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 1
nc 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