You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: architecture/developer-guide.md
+140-12
Original file line number
Diff line number
Diff line change
@@ -4,15 +4,19 @@ The following details outline our standards and guidelines to producing high-qua
4
4
5
5
## PHP coding standards
6
6
7
-
Winter follows the [PSR-2 Coding Style Guide](https://www.php-fig.org/psr/psr-2/) as set forth by the [PHP Framework Interop Group](https://www.php-fig.org/). This guide provides a great starting point for creating code that is easily understandable and familiar to developers. We intend to stick closely to the [PSR-12 Extended Coding Style Guide](https://www.php-fig.org/psr/psr-12/) in the future as well, but this is not a hard requirement at the present time.
7
+
Winter follows the [PSR-12 Extended Coding Style Guide](https://www.php-fig.org/psr/psr-12/) as set forth by the [PHP Framework Interop Group](https://www.php-fig.org/). This guide provides a great starting point for creating code that is easily understandable and familiar to developers, and ensures consistency with other PHP frameworks and projects.
8
8
9
-
### Exceptions to the standard
9
+
This coding style will be enforced on all contributions to Winter CMS and first-party plugins through automated code style checks. It is recommended that you use IDE tools to check your code style, such as installing the [phpcs extension](https://marketplace.visualstudio.com/items?itemName=shevaua.phpcs) for Visual Studio Code or [enabled PHP_CodeSniffer support](https://www.jetbrains.com/help/phpstorm/using-php-code-sniffer.html) in PHPStorm. You will be required to correct any incorrectly formatted code before we can accept any contributions to the Winter CMS core or first-party plugins.
10
10
11
-
Due to historical choices and technical limitations, we have some exceptions to these guidelines in Winter.
11
+
You may also use the `php artisan winter:phpcs` command in your project to run the in-built PHP_CodeSniffer installation included with Winter, if you have installed the development dependencies of Winter through Composer.
12
+
13
+
### Additions and exceptions to the standard
14
+
15
+
We have included some additional rules and made some exemptions to the PSR-12 standard in Winter code for certain language features and syntax that are more open to interpretation in the PSR-12 standard, or where there is a historical choice or technical limitation that prevents us from following PSR-12 to the letter. We will outline these below.
12
16
13
17
#### Controller methods can have a single underscore
14
18
15
-
The PSR-2 guidelines state that methods must be in **camelCase** format. However, in [Backend controllers](../backend/controllers-ajax.md) in Winter, AJAX handlers can be created using a suffix notation if they are connected to a "main" action. For example:
19
+
The PSR-12 guidelines state that methods must be in **camelCase** format. However, in [Backend controllers](../backend/controllers-ajax.md) in Winter, AJAX handlers can be created to be scoped to a particular action by defining a method for the action, and then adding an underscore followed by the AJAX handler name. For example:
16
20
17
21
```php
18
22
public function index()
@@ -31,9 +35,9 @@ public function onDoSomethingElse()
31
35
}
32
36
```
33
37
34
-
An exception must be granted for this scenario. In other scenarios, underscores should be avoided in method names.
38
+
While this should mostly be limited to controllers and components, due to historical usage in other areas (such as traits and behaviours), we have decided to grant an exemption from this rule. However, you should avoid underscores in method names unless explicitly required for the reason above.
35
39
36
-
#### Curly braces for condition blocks
40
+
#### Curly braces and indenting for condition blocks
37
41
38
42
Historical code in Winter has previously used a format where all closing curly braces are on their own line, such as with the following:
39
43
@@ -49,7 +53,7 @@ else {
49
53
}
50
54
```
51
55
52
-
The PSR-2 and PSR-12 guidelines do not have any specific requirement for the placement of curly braces for condition blocks, but most examples on these guidelines, along with examples in other software and framework, try to keep the curly braces in the same line as the condition statement (unless it is multi-line).
56
+
The PSR-12 guidelines have specific requirements for the placement of curly braces for condition blocks and control structures, as defined in [Section 5. Control Structures](https://www.php-fig.org/psr/psr-12/#5-control-structures). Thus, all new code must follow these requirements, for example:
53
57
54
58
```php
55
59
// SINGLE LINE CONDITION STATEMENTS
@@ -79,14 +83,14 @@ if (
79
83
}
80
84
```
81
85
82
-
We intend to follow this format going forward. In addition, some historical code opted to not use curly braces at all for single line condition blocks.
86
+
In addition, some historical code opted to not use curly braces at all for single line condition blocks.
83
87
84
88
```php
85
89
if ($condition)
86
90
doSomething();
87
91
```
88
92
89
-
We do not recommend this format, and instead recommend all condition blocks use curly braces, even if they are single line.
93
+
We no longer support this format, and instead require all condition blocks use curly braces, even if they are single line.
90
94
91
95
```php
92
96
if ($condition) {
@@ -96,28 +100,141 @@ if ($condition) {
96
100
97
101
#### Use of trailing commas
98
102
99
-
Although not specified one way or another in the PSR-2 and PSR-12 guidelines, Winter CMS highly recommends the use of trailing commas in multi-line arrays, especially for localization files. Trailing commas make it easier to perform maintenance on multiline array items without causing unnecessary visual clutter in diffs or version control history.
103
+
Although not specified one way or another in the PSR-12 guidelines, Winter CMS requires the use of a trailing comma for the last item in a multi-line array. Trailing commas make it easier to perform maintenance on multiline array items without causing unnecessary visual clutter in diffs or version control history should an item be added or removed from that array.
100
104
101
-
**Recommended:**
105
+
Single-line arrays do not require a trailing comma for the last item.
106
+
107
+
**Valid:**
102
108
103
109
```php
104
110
$items = [
105
111
'apple',
106
112
'banana',
107
113
'orange',
108
114
];
115
+
116
+
$items = ['apple', 'banana', 'orange'];
109
117
```
110
118
111
-
**Not recommended**:
119
+
**Invalid**:
112
120
113
121
```php
114
122
$items = [
115
123
'apple',
116
124
'banana',
117
125
'orange'
118
126
];
127
+
128
+
$items = ['apple', 'banana', 'orange',];
129
+
```
130
+
131
+
#### Imports (use cases)
132
+
133
+
As some classes in Winter CMS can use a large number of imported classes and traits, we have extended our ruleset beyond PSR-12 to add the following additional requirements for importing classes through `use` definitions:
134
+
135
+
##### - All `use` definitions must be alphabetically ordered, including the namespace
136
+
137
+
**Valid:**
138
+
139
+
```php
140
+
use Cms\Classes\Theme;
141
+
use Exception;
142
+
use Illuminate\Support\Facades\Cache;
143
+
use Winter\Storm\Database\Model;
144
+
```
145
+
146
+
**Invalid:**
147
+
148
+
```php
149
+
use Exception;
150
+
use Illuminate\Support\Facades\Cache;
151
+
use Cms\Classes\Theme;
152
+
use Winter\Storm\Database\Model;
153
+
```
154
+
155
+
##### - We disallow the use of the [grouped `use` declarations](https://www.php.net/manual/en/language.namespaces.importing.php#language.namespaces.importing.group) as it creates additional cruft in diffs
156
+
157
+
**Valid:**
158
+
159
+
```php
160
+
use Cms\Classes\Layout;
161
+
use Cms\Classes\Partial;
162
+
use Cms\Classes\Theme;
163
+
```
164
+
165
+
**Invalid:**
166
+
167
+
```php
168
+
use Cms\Classes\{
169
+
Layout,
170
+
Partial,
171
+
Theme,
172
+
};
119
173
```
120
174
175
+
##### - We disallow using a `use` case for a class that exists in the same namespace as the current class
176
+
177
+
**Valid:**
178
+
179
+
```php
180
+
namespace Acme\Blog\Classes;
181
+
182
+
class Foo
183
+
{
184
+
// ...
185
+
$bar = new Bar();
186
+
// ..
187
+
}
188
+
```
189
+
190
+
**Invalid:**
191
+
192
+
```php
193
+
namespace Acme\Blog\Classes;
194
+
195
+
use Acme\Blog\Classes\Bar;
196
+
197
+
class Foo
198
+
{
199
+
// ...
200
+
$bar = new Bar();
201
+
// ..
202
+
}
203
+
```
204
+
205
+
##### - We disallow a starting backslash for `use` cases, unless it is for importing a trait
206
+
207
+
**Valid:**
208
+
209
+
```php
210
+
namespace Acme\Blog\Classes;
211
+
212
+
use Cms\Classes\Layout;
213
+
use Cms\Classes\Partial;
214
+
use Cms\Classes\Theme;
215
+
216
+
class MyClass
217
+
{
218
+
use \Acme\Blog\Traits\MyTrait;
219
+
}
220
+
```
221
+
222
+
**Invalid:**
223
+
224
+
```php
225
+
namespace Acme\Blog\Classes;
226
+
227
+
use \Cms\Classes\Layout;
228
+
use \Cms\Classes\Partial;
229
+
use \Cms\Classes\Theme;
230
+
231
+
// ...
232
+
```
233
+
234
+
##### - We disallow `use` cases for classes that are unused
235
+
236
+
You should strip out any `use` cases if the class does not get used throughout the code, as leaving it may mislead future developers as to the capabilities and requirements of that class.
237
+
121
238
#### Use of single / double quotes
122
239
123
240
Winter CMS highly recommends the use of single quotes around strings, instead of double quotes. If the string itself contains a single quote as an apostrophe, you should escape that single quote within the string.
@@ -138,6 +255,17 @@ $translations = [
138
255
];
139
256
```
140
257
258
+
#### Templates
259
+
260
+
Several of PSR-12's rules are relaxed for templates, including CMS templates, and partials, layouts and views in the Backend. Since coding style for mixed PHP/HTML files is not well defined by PSR-12, we have made some determinations on the best "style" for mixed files and have opted to relax the following rules:
261
+
262
+
- There is no requirement for a space after the opening of a control block (`if`, `switch`, `when`) and a curly brace or colon, as we generally use the "template" PHP format for templates and it looks neater (ie. `<?php if ($something === true): ?>`)
263
+
- Templates may finish with a closing `?>` PHP tag if it is required to close off a control block or output block.
264
+
- The body of a `case` block within `switch` blocks does not need to be on the next line.
265
+
- The `break` after a `case` block also does not need to be on the next line.
266
+
- Spacing between "header" blocks (such as `use` cases) does not need to followed. You will still need to define each `use` case on its own line, but will no longer need a line before or after the block.
267
+
- Array indentation is not strictly defined in templates, and can be reformatted to better fit the content shown.
0 commit comments