* Dariusz Rumiński * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace PhpCsFixer\Tokenizer; use PhpCsFixer\Utils; /** * @author Dariusz Rumiński * * @internal */ abstract class AbstractTransformer implements TransformerInterface { /** * {@inheritdoc} */ public function getName(): string { $nameParts = explode('\\', static::class); $name = substr(end($nameParts), 0, -\strlen('Transformer')); return Utils::camelCaseToUnderscore($name); } /** * {@inheritdoc} */ public function getPriority(): int { return 0; } /** * {@inheritdoc} */ abstract public function getCustomTokens(): array; }