11 lines
119 B
PHP
11 lines
119 B
PHP
|
<?php
|
||
|
|
||
|
namespace Zxing;
|
||
|
|
||
|
interface Reader
|
||
|
{
|
||
|
public function decode(BinaryBitmap $image);
|
||
|
|
||
|
public function reset();
|
||
|
}
|