mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-07 20:04:32 +02:00
Remove function call of global namespace
This commit is contained in:
parent
0078423b48
commit
da413283da
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ final class AddonManagerHelper implements AddonHelper
|
||||||
foreach ($dirs as $dirname) {
|
foreach ($dirs as $dirname) {
|
||||||
// ignore hidden files and folders
|
// ignore hidden files and folders
|
||||||
// @TODO: Replace with str_starts_with() when PHP 8.0 is the minimum version
|
// @TODO: Replace with str_starts_with() when PHP 8.0 is the minimum version
|
||||||
if (\strncmp($dirname, '.', 1) === 0) {
|
if (strncmp($dirname, '.', 1) === 0) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue