1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-10 06:58:41 +01:00
psalm/src/Psalm/Plugin/PluginFileExtensionsInterface.php

14 lines
269 B
PHP
Raw Normal View History

<?php
2022-01-21 15:53:06 +01:00
namespace Psalm\Plugin;
use SimpleXMLElement;
interface PluginFileExtensionsInterface extends PluginInterface
{
public function processFileExtensions(
FileExtensionsInterface $fileExtensions,
?SimpleXMLElement $config = null
): void;
}