----------------------------------------------------------------------
($size, $data)
| 1873 | |
| 1874 | //---------------------------------------------------------------------- |
| 1875 | public function appendBytes($size, $data) |
| 1876 | { |
| 1877 | if ($size == 0) |
| 1878 | return 0; |
| 1879 | |
| 1880 | $b = QRbitstream::newFromBytes($size, $data); |
| 1881 | |
| 1882 | if(is_null($b)) |
| 1883 | return -1; |
| 1884 | |
| 1885 | $ret = $this->append($b); |
| 1886 | unset($b); |
| 1887 | |
| 1888 | return $ret; |
| 1889 | } |
| 1890 | |
| 1891 | //---------------------------------------------------------------------- |
| 1892 | public function toByte() |
no test coverage detected