first commit

This commit is contained in:
2022-12-23 16:27:07 +01:00
commit 7b144bd346
383 changed files with 23723 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<?php
namespace App\Service;
use Oneup\UploaderBundle\Uploader\File\FileInterface;
use Oneup\UploaderBundle\Uploader\Naming\NamerInterface;
class UploadSamename implements NamerInterface
{
public function name(FileInterface $file)
{
return $file->getClientOriginalName();
}
}