----------------------------------------------------------------------
($mode, $version)
| 133 | |
| 134 | //---------------------------------------------------------------------- |
| 135 | public static function lengthIndicator($mode, $version) |
| 136 | { |
| 137 | if ($mode == QR_MODE_STRUCTURE) |
| 138 | return 0; |
| 139 | |
| 140 | if ($version <= 9) { |
| 141 | $l = 0; |
| 142 | } else if ($version <= 26) { |
| 143 | $l = 1; |
| 144 | } else { |
| 145 | $l = 2; |
| 146 | } |
| 147 | |
| 148 | return self::$lengthTableBits[$mode][$l]; |
| 149 | } |
| 150 | |
| 151 | //---------------------------------------------------------------------- |
| 152 | public static function maximumWords($mode, $version) |
no outgoing calls
no test coverage detected