----------------------------------------------------------------------
($mode, $version)
| 445 | |
| 446 | //---------------------------------------------------------------------- |
| 447 | public static function lengthIndicator($mode, $version) |
| 448 | { |
| 449 | if ($mode == QR_MODE_STRUCTURE) |
| 450 | return 0; |
| 451 | |
| 452 | if ($version <= 9) { |
| 453 | $l = 0; |
| 454 | } else if ($version <= 26) { |
| 455 | $l = 1; |
| 456 | } else { |
| 457 | $l = 2; |
| 458 | } |
| 459 | |
| 460 | return self::$lengthTableBits[$mode][$l]; |
| 461 | } |
| 462 | |
| 463 | //---------------------------------------------------------------------- |
| 464 | public static function maximumWords($mode, $version) |
no outgoing calls
no test coverage detected