Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
36 | public static function wrongArraySignature(array $criterion) |
||
37 | { |
||
38 | return new static( |
||
39 | 'Array signature for criterion instantiating must contain only two elements in case of sequential array and one in case of assoc array. '. |
||
|
|||
40 | 'Array with length "'.count($criterion).'" given'); |
||
41 | } |
||
42 | } |
||
43 |
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.