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