We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bafe077 commit 43b3d97Copy full SHA for 43b3d97
.php_cs.dist
@@ -7,6 +7,7 @@ $finder = Symfony\Component\Finder\Finder::create()
7
->in([
8
__DIR__ . '/config',
9
__DIR__ . '/database',
10
+ __DIR__ . '/resources/lang',
11
__DIR__ . '/src',
12
__DIR__ . '/tests',
13
])
phpcs.xml.dist
@@ -1,4 +1,5 @@
1
<ruleset>
2
+ <file>./resources/lang</file>
3
<file>./src</file>
4
<file>./tests</file>
5
<arg name="extensions" value="php" />
resources/lang/en/lang.php
@@ -22,4 +22,4 @@
22
'updates' => 'Updates',
23
'users' => 'Users',
24
'users_online' => 'Users online',
25
-];
+];
resources/lang/en_au/lang.php
@@ -2,4 +2,4 @@
return [
resources/lang/en_gb/lang.php
0 commit comments