Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Feb 19, 2024
1 parent 0c2e2e8 commit c3b1513
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 26 deletions.
55 changes: 31 additions & 24 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions plugins/Sandbox/src/Controller/ToolsExamplesController.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function initialize(): void {
/**
* @param \Cake\Event\EventInterface $event
*
* @return \Cake\Http\Response|void|null
* @return \Cake\Http\Response|null|void
*/
public function beforeFilter(EventInterface $event) {
parent::beforeFilter($event);
Expand Down Expand Up @@ -72,7 +72,7 @@ public function trim() {

if ($this->request->getQuery('key')) {
$key = $this->request->getQuery('key');
$this->Flash->success(__d('sandbox', 'Query string value is `{0}`', $key));
$this->Flash->success(__d('sandbox', 'Query string value is `{0}`', $key));
}

if ($this->request->is(['post', 'put'])) {
Expand Down

0 comments on commit c3b1513

Please sign in to comment.