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