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