Advertisement
Guest User

ImageUploaderInterface

a guest
Apr 22nd, 2018
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Contracts;
  4.  
  5. use Illuminate\Http\UploadedFile;
  6.  
  7. interface ImageUploaderInterface
  8. {
  9.     public function deleteIfExists($filePath): bool;
  10.     public function uploadCompanyLogo(UploadedFile $uploadedFile): string;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement