vendor and env first commit
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Endroid\QrCode\Matrix;
|
||||
|
||||
interface MatrixInterface
|
||||
{
|
||||
public function getBlockValue(int $rowIndex, int $columnIndex): int;
|
||||
|
||||
public function getBlockCount(): int;
|
||||
|
||||
public function getBlockSize(): float;
|
||||
|
||||
public function getInnerSize(): int;
|
||||
|
||||
public function getOuterSize(): int;
|
||||
|
||||
public function getMarginLeft(): int;
|
||||
|
||||
public function getMarginRight(): int;
|
||||
}
|
||||
Reference in New Issue
Block a user