Apply Laravel coding style

Shift automatically applies the Laravel coding style - which uses the PSR-12 coding style as a base with some minor additions.

You may customize the code style applied by configuring [Pint](https://laravel.com/docs/pint), [PHP CS Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer), or [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) for your project root.

For more information on customizing the code style applied by Shift, [watch this short video](https://laravelshift.com/videos/shift-code-style).
This commit is contained in:
Shift
2023-01-07 20:55:49 +00:00
parent 49021a4497
commit 0b263803ad
232 changed files with 14443 additions and 14827 deletions

View File

@@ -43,7 +43,6 @@ class HelptopicController extends Controller
* Display a listing of the helptopic.
*
* @param type Help_topic $topic
*
* @return type Response
*/
public function index(Help_topic $topic)
@@ -66,7 +65,6 @@ class HelptopicController extends Controller
* @param type Form_name $form
* @param type Agents $agent
* @param type Sla_plan $sla
*
* @return type Response
*/
/*
@@ -100,7 +98,6 @@ class HelptopicController extends Controller
*
* @param type Help_topic $topic
* @param type HelptopicRequest $request
*
* @return type Response
*/
public function store(Help_topic $topic, HelptopicRequest $request)
@@ -130,14 +127,13 @@ class HelptopicController extends Controller
/**
* Show the form for editing the specified helptopic.
*
* @param type $id
* @param type $id
* @param type Priority $priority
* @param type Department $department
* @param type Help_topic $topic
* @param type Form_name $form
* @param type Agents $agent
* @param type Sla_plan $sla
*
* @return type Response
*/
public function edit($id, Ticket_Priority $priority, Department $department, Help_topic $topic, Forms $form, Sla_plan $sla)
@@ -162,10 +158,9 @@ class HelptopicController extends Controller
/**
* Update the specified helptopic in storage.
*
* @param type $id
* @param type $id
* @param type Help_topic $topic
* @param type HelptopicUpdate $request
*
* @return type Response
*/
public function update($id, Help_topic $topic, HelptopicUpdate $request)
@@ -205,7 +200,6 @@ class HelptopicController extends Controller
*
* @param type int $id
* @param type Help_topic $topic
*
* @return type Response
*/
public function destroy($id, Help_topic $topic, Ticket $ticket_setting)