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 78bebde commit 0f7837fCopy full SHA for 0f7837f
src/TwigExtension/ExtensionLoader.php
@@ -57,7 +57,7 @@ static protected function loadAll($type) {
57
foreach (scandir($fullPath . $type) as $file) {
58
$fileInfo = pathinfo($file);
59
if ($fileInfo['extension'] === 'php') {
60
- if ($file[0] != '.' && $file[0] != '_' && substr($file, 0, 2) != 'd_') {
+ if ($file[0] != '.' && $file[0] != '_' && substr($file, 0, 3) != 'pl_') {
61
static::load($type, $fullPath . $type . '/' . $file);
62
}
63
0 commit comments