| 1 | <?php |
||
| 13 | final class StandardNameToSniffsFactory implements SniffFactoryInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var StandardFinder |
||
| 17 | */ |
||
| 18 | private $standardFinder; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var RulesetXmlToSniffsFactory |
||
| 22 | */ |
||
| 23 | private $rulesetXmlToSniffsFactory; |
||
| 24 | |||
| 25 | 10 | public function __construct( |
|
| 32 | |||
| 33 | 7 | public function isMatch(string $reference) : bool |
|
| 38 | |||
| 39 | 5 | public function create(string $standardName) : array |
|
| 44 | } |
||
| 45 |