Skip to content

Commit 9dbd3d0

Browse files
committed
Fix CS
1 parent 5f6b059 commit 9dbd3d0

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

src/Model/Entity/Panel.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ class Panel extends Entity
3838
* Over certain sizes PDO will return file handles.
3939
* For backwards compatibility and consistency we smooth over that difference here.
4040
*
41+
* @param mixed $content Content
4142
* @return string
4243
*/
4344
protected function _getContent($content)

src/Routing/Filter/DebugBarFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public function beforeDispatch(Event $event)
128128
* Save the toolbar data.
129129
*
130130
* @param \Cake\Event\Event $event The afterDispatch event.
131-
* @return \Cake\Http\Response|null Modifed response or null
131+
* @return \Psr\Http\Message\ResponseInterface|void Modified response or null
132132
*/
133133
public function afterDispatch(Event $event)
134134
{

src/Shell/BenchmarkShell.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@
2323
* functionally similar to Apache AB
2424
*
2525
* @since DebugKit 1.0
26-
* @todo Print/export time detail information
27-
* @todo Export/graphing of data to .dot format for graphviz visualization
28-
* @todo Make calculated results round to leading significant digit position of std dev.
2926
*/
3027
class BenchmarkShell extends Shell
3128
{

src/View/Helper/TidyHelper.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ public function process($html = '', &$out = '')
7373
if (isset($markup[$line - 1])) {
7474
$string .= h($markup[$line - 1]);
7575
}
76+
// phpcs:ignore
7677
$string .= '<strong>' . h(@$markup[$line]) . '</strong>';
7778
if (isset($markup[$line + 1])) {
7879
$string .= h($markup[$line + 1]);

src/View/Helper/ToolbarHelper.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ class ToolbarHelper extends Helper
4747
* set sorting of values
4848
*
4949
* @param bool $sort Whether or not sort values by key
50+
* @return void
5051
*/
5152
public function setSort($sort)
5253
{

0 commit comments

Comments
 (0)