Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.humitest.fr
/
htdocs
/
vendor
/
vich
/
uploader-bundle
/
Naming
/
/srv/data/web/vhosts/www.humitest.fr/htdocs/vendor/vich/uploader-bundle/Naming/NamerInterface.php
<?php namespace Vich\UploaderBundle\Naming; use Vich\UploaderBundle\Mapping\PropertyMapping; /** * NamerInterface. * * @author Dustin Dobervich <ddobervich@gmail.com> */ interface NamerInterface { /** * Creates a name for the file being uploaded. * * @param object $object The object the upload is attached to * @param PropertyMapping $mapping The mapping to use to manipulate the given object * * @return string The file name */ public function name($object, PropertyMapping $mapping): string; }