11 lines
119 B
PHP
Raw Normal View History

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