%PDF- %PDF-
| Direktori : /home2/vacivi36/vacivitta_bakcup/vendor/rector/rector/src/ValueObject/ |
| Current File : //home2/vacivi36/vacivitta_bakcup/vendor/rector/rector/src/ValueObject/StaticNonPhpFileSuffixes.php |
<?php
declare (strict_types=1);
namespace Rector\Core\ValueObject;
final class StaticNonPhpFileSuffixes
{
/**
* @var string[]
*/
public const SUFFIXES = ['neon', 'yaml', 'xml', 'yml', 'twig', 'latte', 'blade.php', 'tpl'];
public static function getSuffixRegexPattern() : string
{
$quotedSuffixes = [];
foreach (self::SUFFIXES as $suffix) {
$quotedSuffixes[] = \preg_quote($suffix, '#');
}
return '#\\.(' . \implode('|', $quotedSuffixes) . ')$#i';
}
}