Skip to content

Commit

Permalink
Merge pull request #8 from hamid-project/feature/7_Wrong_file_name
Browse files Browse the repository at this point in the history
fixed wrong file name. (#7)
  • Loading branch information
elf committed Aug 15, 2019
2 parents af4d1d8 + 07cfe8e commit da90381
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
namespace App\Http\Controllers\Admin;

use App\Http\Controllers\Controller;
use App\Files;
use App\File;
use Illuminate\Http\Request;

class FilesController extends Controller
class FileController extends Controller
{
/**
* Display a listing of the resource.
Expand Down Expand Up @@ -42,21 +42,21 @@ public function store(Request $request)
/**
* Display the specified resource.
*
* @param \App\Files $files
* @param \App\File $file
* @return \Illuminate\Http\Response
*/
public function show(Files $files)
public function show(File $file)
{
//
}

/**
* Show the form for editing the specified resource.
*
* @param \App\Files $files
* @param \App\File $file
* @return \Illuminate\Http\Response
*/
public function edit(Files $files)
public function edit(File $file)
{
//
}
Expand All @@ -65,21 +65,21 @@ public function edit(Files $files)
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param \App\Files $files
* @param \App\File $file
* @return \Illuminate\Http\Response
*/
public function update(Request $request, Files $files)
public function update(Request $request, File $file)
{
//
}

/**
* Remove the specified resource from storage.
*
* @param \App\Files $files
* @param \App\File $file
* @return \Illuminate\Http\Response
*/
public function destroy(Files $files)
public function destroy(File $file)
{
//
}
Expand Down

0 comments on commit da90381

Please sign in to comment.