Example #1
0
 /**
  * @param $file_id
  * @return mixed
  */
 public function destroy($file_id)
 {
     return File::destroy($file_id);
 }
Example #2
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     File::destroy($id);
 }