| 1 | <?php namespace App\Modules\V1\Core\Utl; |
||
| 3 | class Media |
||
| 4 | { |
||
| 5 | /** |
||
| 6 | * Upload the given image. |
||
| 7 | * |
||
| 8 | * @param object $image |
||
| 9 | * @param string $dir |
||
| 10 | * @return string |
||
| 11 | */ |
||
| 12 | public function uploadImage($image, $dir) |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Upload the given image. |
||
| 20 | * |
||
| 21 | * @param object $image |
||
| 22 | * @param string $dir |
||
| 23 | * @return string |
||
| 24 | */ |
||
| 25 | public function uploadImageBas64($image, $dir) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Delete the given image. |
||
| 40 | * |
||
| 41 | * @param object $path |
||
| 42 | * @return void |
||
| 43 | */ |
||
| 44 | public function deleteImage($path) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * Save the given image. |
||
| 51 | * |
||
| 52 | * @param object $image |
||
| 53 | * @param string $dir |
||
| 54 | * @return string |
||
| 55 | */ |
||
| 56 | protected function saveImage($image, $dir) |
||
| 64 | } |
||
| 65 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.