Açıklama Yok

Objective_OutcomeController.php 996B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?php
  2. class Objective_OutcomeController extends \BaseController {
  3. /**
  4. * Display a listing of the resource.
  5. *
  6. * @return Response
  7. */
  8. public function index()
  9. {
  10. //
  11. }
  12. /**
  13. * Show the form for creating a new resource.
  14. *
  15. * @return Response
  16. */
  17. public function create()
  18. {
  19. //
  20. }
  21. /**
  22. * Store a newly created resource in storage.
  23. *
  24. * @return Response
  25. */
  26. public function store()
  27. {
  28. //
  29. }
  30. /**
  31. * Display the specified resource.
  32. *
  33. * @param int $id
  34. * @return Response
  35. */
  36. public function show($id)
  37. {
  38. //
  39. }
  40. /**
  41. * Show the form for editing the specified resource.
  42. *
  43. * @param int $id
  44. * @return Response
  45. */
  46. public function edit($id)
  47. {
  48. //
  49. }
  50. /**
  51. * Update the specified resource in storage.
  52. *
  53. * @param int $id
  54. * @return Response
  55. */
  56. public function update($id)
  57. {
  58. //
  59. }
  60. /**
  61. * Remove the specified resource from storage.
  62. *
  63. * @param int $id
  64. * @return Response
  65. */
  66. public function destroy($id)
  67. {
  68. //
  69. }
  70. }