We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9517465 commit a523d70Copy full SHA for a523d70
phpcs.xml
@@ -116,6 +116,7 @@
116
<rule ref="Squiz.WhiteSpace.ScopeClosingBrace"/>
117
<rule ref="Squiz.WhiteSpace.ScopeKeywordSpacing"/>
118
<rule ref="Squiz.WhiteSpace.SemicolonSpacing"/>
119
+ <rule ref="Generic.Formatting.SpaceAfterNot"/>
120
<rule ref="Zend.Files.ClosingTag"/>
121
122
<file>src</file>
src/config/theme.php
@@ -5,7 +5,7 @@
5
6
// Check if theme exists
7
$themePath = __DIR__.'/themes/'.$selectedTheme.'.php';
8
-if (!file_exists($themePath)) {
+if (! file_exists($themePath)) {
9
$selectedTheme = 'default';
10
$themePath = __DIR__.'/themes/default.php';
11
}
0 commit comments