Skip to content

Commit a2fed68

Browse files
committed
docs: replace Note: with NOTE:
For concisytency.
1 parent 254435e commit a2fed68

5 files changed

Lines changed: 7 additions & 5 deletions

File tree

app/Config/Cache.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ class Cache extends BaseConfig
9595
* A string of reserved characters that will not be allowed in keys or tags.
9696
* Strings that violate this restriction will cause handlers to throw.
9797
* Default: {}()/\@:
98-
* Note: The default set is required for PSR-6 compliance.
98+
*
99+
* NOTE: The default set is required for PSR-6 compliance.
99100
*/
100101
public string $reservedCharacters = '{}()/\@:';
101102

app/Config/ContentSecurityPolicy.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class ContentSecurityPolicy extends BaseConfig
3939

4040
// -------------------------------------------------------------------------
4141
// Sources allowed
42-
// Note: once you set a policy to 'none', it cannot be further restricted
42+
// NOTE: once you set a policy to 'none', it cannot be further restricted
4343
// -------------------------------------------------------------------------
4444

4545
/**

app/Config/Logger.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class Logger extends BaseConfig
9999
* An extension of 'php' allows for protecting the log files via basic
100100
* scripting, when they are to be stored under a publicly accessible directory.
101101
*
102-
* Note: Leaving it blank will default to 'log'.
102+
* NOTE: Leaving it blank will default to 'log'.
103103
*/
104104
'fileExtension' => '',
105105

app/Config/Migrations.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class Migrations extends BaseConfig
4040
* using the CLI command:
4141
* > php spark make:migration
4242
*
43-
* Note: if you set an unsupported format, migration runner will not find
43+
* NOTE: if you set an unsupported format, migration runner will not find
4444
* your migration files.
4545
*
4646
* Supported formats:

app/Config/Modules.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
/**
88
* Modules Configuration.
99
*
10-
* NOTE: This class is required prior to Autoloader instantiation.
10+
* NOTE: This class is required prior to Autoloader instantiation,
11+
* and does not extend BaseConfig.
1112
*/
1213
class Modules extends BaseModules
1314
{

0 commit comments

Comments
 (0)