2024-01-26 09:39:36 +08:00

11 lines
119 B
PHP
Executable File

<?php
namespace Zxing;
interface Reader
{
public function decode(BinaryBitmap $image);
public function reset();
}