forked from leftypol/leftypol
8 lines
116 B
PHP
8 lines
116 B
PHP
|
<?php
|
||
|
namespace Vichan\Data\Driver;
|
||
|
|
||
|
|
||
|
interface ExifReader {
|
||
|
public function getOrientation(string $file): ?int;
|
||
|
}
|