Skip to content

Commit 43b3d97

Browse files
committed
php cs
1 parent bafe077 commit 43b3d97

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

.php_cs.dist

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ $finder = Symfony\Component\Finder\Finder::create()
77
->in([
88
__DIR__ . '/config',
99
__DIR__ . '/database',
10+
__DIR__ . '/resources/lang',
1011
__DIR__ . '/src',
1112
__DIR__ . '/tests',
1213
])

phpcs.xml.dist

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<ruleset>
2+
<file>./resources/lang</file>
23
<file>./src</file>
34
<file>./tests</file>
45
<arg name="extensions" value="php" />

resources/lang/en/lang.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
'updates' => 'Updates',
2323
'users' => 'Users',
2424
'users_online' => 'Users online',
25-
];
25+
];

resources/lang/en_au/lang.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
return [
44

5-
];
5+
];

resources/lang/en_gb/lang.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
return [
44

5-
];
5+
];

0 commit comments

Comments
 (0)