Skip to content

Commit 84cb872

Browse files
committed
Typo
1 parent df4798a commit 84cb872

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

src/Dashboards/DashboardInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
interface DashboardInterface {
1616
/**
17-
* Check if extension is installed.
17+
* Check if an extension is installed.
1818
*
1919
* @return bool
2020
*/

src/Dashboards/Memcached/MemcachedDashboard.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function __construct(Template $template) {
3333
}
3434

3535
/**
36-
* Check if extension is installed.
36+
* Check if an extension is installed.
3737
*
3838
* @return bool
3939
*/

src/Dashboards/OPCache/OPCacheDashboard.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function __construct(Template $template) {
2626
}
2727

2828
/**
29-
* Check if extension is installed.
29+
* Check if an extension is installed.
3030
*
3131
* @return bool
3232
*/

src/Dashboards/Redis/RedisDashboard.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function __construct(Template $template) {
4141
}
4242

4343
/**
44-
* Check if extension is installed.
44+
* Check if an extension is installed.
4545
*
4646
* @return bool
4747
*/

src/Dashboards/Server/ServerDashboard.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ public function __construct(Template $template) {
2626
}
2727

2828
/**
29-
* Check if extension is installed.
29+
* Check if an extension is installed.
3030
*
3131
* @return bool
3232
*/
3333
public function check(): bool {
34-
return true;
34+
return true; // No extension required, just return true.
3535
}
3636

3737
/**

src/Helpers.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ class Helpers {
2323
private static ?string $encode_fn = null;
2424

2525
/**
26-
* Convert ENV variable to array.
26+
* Convert ENV variable to an array.
2727
*
28-
* It allows to use ENV variables and config.php together.
28+
* It allows app to use ENV variables and config.php together.
2929
*
3030
* @param array<string, mixed> $array
3131
* @param string $array_key
@@ -229,7 +229,7 @@ public static function enabledDisabledBadge(Template $template, bool $enabled =
229229
}
230230

231231
/**
232-
* Convert bool to string in array.
232+
* Convert bool to string in an array.
233233
*
234234
* @param array<mixed, mixed> $array
235235
*

0 commit comments

Comments
 (0)