Commit 86e467ce authored by Guillaume Perréal's avatar Guillaume Perréal
Browse files

Typo dans les phpdoc de FileManagerInterface.

Showing with 6 additions and 2 deletions
+6 -2
......@@ -9,6 +9,8 @@
namespace Irstea\FileUploadBundle\Model;
use Symfony\Component\Validator\Exception\InvalidArgumentException;
/**
* Gestionnaire de fichier uploadé.
*
......@@ -20,7 +22,7 @@ interface FileManagerInterface
*
* @param string $id Identifiant du fichier.
*
* @return UploadedFileInterfaceǹull Le fichier retrouvé ou null si aucun fichier ne correspond.
* @return UploadedFileInterface|null Le fichier retrouvé ou null si aucun fichier ne correspond.
*
* @api
*/
......@@ -48,7 +50,9 @@ interface FileManagerInterface
*
* @param UploadedFileInterface $original
* @return UploadedFileInterface
* @throw InvalidArgumentException Le fichier original est invalide.
* @throws InvalidArgumentException Le fichier original est invalide.
*
* @api
*/
public function duplicate(UploadedFileInterface $original);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment