11 lines
119 B
PHP
Raw Normal View History

2023-05-10 13:39:12 +08:00
<?php
namespace Zxing;
interface Reader
{
2023-11-02 14:13:04 +08:00
public function decode(BinaryBitmap $image);
2023-05-10 13:39:12 +08:00
2023-11-02 14:13:04 +08:00
public function reset();
2023-05-10 13:39:12 +08:00
}