ImageMetadataReader: update

This commit is contained in:
Zankaria 2025-03-22 00:49:25 +01:00
parent 322543a2e0
commit d5b4f2cd0f
3 changed files with 8 additions and 8 deletions

View file

@ -1,12 +1,12 @@
<?php
namespace Vichan\Service\Media;
use Vichan\Data\ImageMetadataResult;
use Vichan\Data\ImageMetadata;
interface ImageMetadataReader {
/**
* @param string $file_path Image file path.
*/
public function getMetadata(string $file_path): ImageMetadataResult;
public function getMetadata(string $file_path): ImageMetadata;
}