File: /home/imensosw/.trash/app/Http/Controllers/PhotoController.php
<?php
/**
* PhotoController class file
*
* PHP Version 7.2
*
* @category Controller
* @package Ez
* @author Imenso Software <admin@imensosoftware.com>
* @license http://imensosoftware/license.php GNU Public License
* @link http://imensosoftware.com/recipes
*/
namespace App\Http\Controllers;
use Illuminate\Http\Request;
/**
* PhotoController class
*
* The class manage the Photo
*
* @category PhotoController
* @package Ez
* @author Imenso Software <admin@imensosoftware.com>
* @license http://imensosoftware/license.php GNU Public License
* @link http://imensosoftware.com/recipes
*/
class PhotoController extends Controller
{
/**
* Display a listing of the resource.
*
* @param void
* @return void
*/
public function index(): void
{
//
}
/**
* Show the form for creating a new resource.
*
* @param void
* @return void
*/
public function create(): void
{
//
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request request
* @return void
*/
public function store(Request $request): void
{
//
}
/**
* Display the specified resource.
*
* @param int id
* @return void
*/
public function show($id): void
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param int id
* @return void
*/
public function edit($id): void
{
//
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request request
* @param int id
* @return void
*/
public function update(Request $request, $id): void
{
//
}
/**
* Remove the specified resource from storage.
*
* @param int id
* @return void
*/
public function destroy($id): void
{
//
}
}