Skip to content

Commit

Permalink
phpcs fixes for baked controller actions
Browse files Browse the repository at this point in the history
  • Loading branch information
AD7six committed Nov 25, 2014
1 parent 5990733 commit a76f6e7
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/Template/Bake/Element/Controller/delete.ctp
Expand Up @@ -17,7 +17,7 @@
/**
* Delete method
*
* @param string|null $id
* @param string|null $id <%= $singularHumanName %> id
* @return void
* @throws \Cake\Network\Exception\NotFoundException
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Template/Bake/Element/Controller/edit.ctp
Expand Up @@ -21,7 +21,7 @@ $compact = ["'" . $singularName . "'"];
/**
* Edit method
*
* @param string|null $id
* @param string|null $id <%= $singularHumanName %> id
* @return void
* @throws \Cake\Network\Exception\NotFoundException
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Template/Bake/Element/Controller/view.ctp
Expand Up @@ -23,7 +23,7 @@ $allAssociations = array_merge(
/**
* View method
*
* @param string|null $id
* @param string|null $id <%= $singularHumanName %> id
* @return void
* @throws \Cake\Network\Exception\NotFoundException
*/
Expand Down
6 changes: 3 additions & 3 deletions tests/bake_compare/Controller/testBakeActions.php
Expand Up @@ -41,7 +41,7 @@ public function index() {
/**
* View method
*
* @param string|null $id
* @param string|null $id Bake Article id
* @return void
* @throws \Cake\Network\Exception\NotFoundException
*/
Expand Down Expand Up @@ -75,7 +75,7 @@ public function add() {
/**
* Edit method
*
* @param string|null $id
* @param string|null $id Bake Article id
* @return void
* @throws \Cake\Network\Exception\NotFoundException
*/
Expand All @@ -100,7 +100,7 @@ public function edit($id = null) {
/**
* Delete method
*
* @param string|null $id
* @param string|null $id Bake Article id
* @return void
* @throws \Cake\Network\Exception\NotFoundException
*/
Expand Down
6 changes: 3 additions & 3 deletions tests/bake_compare/Controller/testBakeActionsContent.php
Expand Up @@ -25,7 +25,7 @@ public function index() {
/**
* View method
*
* @param string|null $id
* @param string|null $id Bake Article id
* @return void
* @throws \Cake\Network\Exception\NotFoundException
*/
Expand Down Expand Up @@ -59,7 +59,7 @@ public function add() {
/**
* Edit method
*
* @param string|null $id
* @param string|null $id Bake Article id
* @return void
* @throws \Cake\Network\Exception\NotFoundException
*/
Expand All @@ -84,7 +84,7 @@ public function edit($id = null) {
/**
* Delete method
*
* @param string|null $id
* @param string|null $id Bake Article id
* @return void
* @throws \Cake\Network\Exception\NotFoundException
*/
Expand Down
6 changes: 3 additions & 3 deletions tests/bake_compare/Controller/testBakeWithPlugin.php
Expand Up @@ -25,7 +25,7 @@ public function index() {
/**
* View method
*
* @param string|null $id
* @param string|null $id Bake Article id
* @return void
* @throws \Cake\Network\Exception\NotFoundException
*/
Expand Down Expand Up @@ -59,7 +59,7 @@ public function add() {
/**
* Edit method
*
* @param string|null $id
* @param string|null $id Bake Article id
* @return void
* @throws \Cake\Network\Exception\NotFoundException
*/
Expand All @@ -84,7 +84,7 @@ public function edit($id = null) {
/**
* Delete method
*
* @param string|null $id
* @param string|null $id Bake Article id
* @return void
* @throws \Cake\Network\Exception\NotFoundException
*/
Expand Down

0 comments on commit a76f6e7

Please sign in to comment.