Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public static function wrongArraySignature(array $criterion) |
||
26 | { |
||
27 | return new static( |
||
28 | 'Array signature for criterion instantiating must contain only two elements in case of sequential array and one in case of assoc array. '. |
||
29 | 'Array with length "'.count($criterion).'" given'); |
||
30 | } |
||
31 | } |
||
32 |