Skip to content

Commit bdd69d1

Browse files
committed
fix CS
1 parent f9b36bb commit bdd69d1

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

phpcs.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@
55
<exclude-pattern>*/src/Controller/*</exclude-pattern>
66
</rule>
77

8+
<rule ref="Generic.Files.LineLength">
9+
<properties>
10+
<property name="lineLimit" value="200"/>
11+
<property name="absoluteLineLimit" value="0"/>
12+
</properties>
13+
</rule>
14+
815
<file>src/</file>
916
<file>tests/</file>
1017
</ruleset>

src/Controller/UsersController.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
*/
1313
class UsersController extends AppController
1414
{
15+
/**
16+
* @return \Cake\Http\Response
17+
*/
1518
public function logout(): Response
1619
{
1720
$this->Authentication->logout();

0 commit comments

Comments
 (0)