123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- namespace Goodquestiondev\SimpleRouterResource;
- use Symfony\Component\HttpFoundation\Request;
- class Controller
- {
- /**
- * Display the articles index.
- */
- public function index()
- {
- throw new \Exception('Undefined method '. __FUNCTION__);
- }
- /**
- * Show the form for creating a new resource.
- */
- public function create()
- {
- throw new \Exception('Undefined method '. __FUNCTION__);
- }
- /**
- * Store a newly created resource
- *
- * @param Request $request
- */
- public function store(Request $request)
- {
- throw new \Exception('Undefined method '. __FUNCTION__);
- }
- /**
- * Display the specified resource
- *
- * @param array $resource
- */
- public function show(array $resource)
- {
- throw new \Exception('Undefined method '. __FUNCTION__);
- }
- }
|