Skip to content

Instantly share code, notes, and snippets.

@ismail1432
Created July 3, 2022 20:46
Show Gist options
  • Save ismail1432/2e888acf21d0bd77eee90cb6dc7d20e1 to your computer and use it in GitHub Desktop.
Save ismail1432/2e888acf21d0bd77eee90cb6dc7d20e1 to your computer and use it in GitHub Desktop.
// AppFileConstraint.php
<?php
declare(strict_types=1);
namespace App\Constraints;
use Symfony\Component\Validator\Constraints\File;
// This class is used as marker to validate File by guessing the MIME type with the `FileBinaryMimeTypeGuesserDecorator` first.
final class AppFile extends File
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment