mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 18:51:31 +00:00
The official image from streamline does not currently work for the arm64 platform. As a temporary measure, the source code and docker build scripts have been lifted from the official images and are used to build locally. Some additional modifications are made to reduce overall image size, these are documented in docker/README.md
84 lines
1.9 KiB
PHP
Executable File
84 lines
1.9 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 \Streamline\Models\SecurityQuestion $securityQuestion
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function show(SecurityQuestion $securityQuestion) {
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Show the form for editing the specified resource.
|
|
*
|
|
* @param \Streamline\Models\SecurityQuestion $securityQuestion
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function edit(SecurityQuestion $securityQuestion) {
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Update the specified resource in storage.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param \Streamline\Models\SecurityQuestion $securityQuestion
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function update(Request $request, SecurityQuestion $securityQuestion) {
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Remove the specified resource from storage.
|
|
*
|
|
* @param \Streamline\Models\SecurityQuestion $securityQuestion
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function destroy(SecurityQuestion $securityQuestion) {
|
|
//
|
|
}
|
|
|
|
}
|