| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| 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 | |||
| 37 |
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.