Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: PHPDoc types in controller.tpl.php #8561

Merged
merged 5 commits into from
Feb 23, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: @param in template
kenjis committed Feb 19, 2024
commit a988a38bb167e792fb48b639e5b2b4c5f9703cc7
10 changes: 5 additions & 5 deletions system/Commands/Generators/Views/controller.tpl.php
Original file line number Diff line number Diff line change
@@ -99,7 +99,7 @@ public function index()
/**
* Present a view to present a specific resource object.
*
* @param string $id
* @param string|null $id
*
* @return ResponseInterface
*/
@@ -132,7 +132,7 @@ public function create()
/**
* Present a view to edit the properties of a specific resource object.
*
* @param mixed $id
* @param string|null $id
*
* @return mixed
*/
@@ -145,7 +145,7 @@ public function edit($id = null)
* Process the updating, full or partial, of a specific resource object.
* This should be a POST.
*
* @param mixed $id
* @param string|null $id
*
* @return mixed
*/
@@ -157,7 +157,7 @@ public function update($id = null)
/**
* Present a view to confirm the deletion of a specific resource object.
*
* @param mixed $id
* @param string|null $id
*
* @return mixed
*/
@@ -169,7 +169,7 @@ public function remove($id = null)
/**
* Process the deletion of a specific resource object.
*
* @param mixed $id
* @param string|null $id
*
* @return mixed
*/