mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-23 19:24:48 +01:00
15 lines
160 B
PHP
15 lines
160 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PHP_CodeSniffer\Sniffs;
|
|
|
|
if (interface_exists('PHP_CodeSniffer\Sniffs\Sniff')) {
|
|
return;
|
|
}
|
|
|
|
interface Sniff
|
|
{
|
|
|
|
}
|