Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(support): add UploadCaster class #2

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions src/Tempest/Database/src/Casters/UploadCaster.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php

declare(strict_types=1);

namespace Tempest\Database\Casters;

use function filesize;
use function file_exists;
use Laminas\Diactoros\UploadedFile;
use Tempest\Http\Upload;
use Tempest\Mapper\Caster;
use const UPLOAD_ERR_OK;

final readonly class UploadCaster implements Caster
{
public function cast(mixed $input): Upload
{
if ($input instanceof Upload) {
return $input;
}

return new UploadedFile($input, filesize($input), UPLOAD_ERR_OK);

Check failure on line 22 in src/Tempest/Database/src/Casters/UploadCaster.php

View workflow job for this annotation

GitHub Actions / Run Static Analysis: PHPStan

Method Tempest\Database\Casters\UploadCaster::cast() should return Tempest\Http\Upload but returns Laminas\Diactoros\UploadedFile.
}
}
Loading