Files
streamline-emr/docker/streamline-src/app/Http/Controllers/SecurityQuestionController.php
T
alec.turner 4a89356390 Import latest app updates from streamline
An updated set of source files and initialization was provided by streamline to
address issues observed during initial testing. These files have been updated in
order to generate a new set of app images.
2024-04-11 11:16:51 -07:00

84 lines
1.8 KiB
PHP
Executable File

<?php
namespace Streamline\Http\Controllers;
use Streamline\Models\SecurityQuestion;
use Illuminate\Http\Request;
class SecurityQuestionController extends Controller {
public function __construct() {
}
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index() {
//
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create() {
//
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request) {
//
}
/**
* Display the specified resource.
*
* @param SecurityQuestion $securityQuestion
* @return \Illuminate\Http\Response
*/
public function show(SecurityQuestion $securityQuestion) {
//
}
/**
* Show the form for editing the specified resource.
*
* @param SecurityQuestion $securityQuestion
* @return \Illuminate\Http\Response
*/
public function edit(SecurityQuestion $securityQuestion) {
//
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param SecurityQuestion $securityQuestion
* @return \Illuminate\Http\Response
*/
public function update(Request $request, SecurityQuestion $securityQuestion) {
//
}
/**
* Remove the specified resource from storage.
*
* @param SecurityQuestion $securityQuestion
* @return \Illuminate\Http\Response
*/
public function destroy(SecurityQuestion $securityQuestion) {
//
}
}