TASK: Add missing phpdoc

This commit is contained in:
Daniel Siepmann 2017-04-13 16:05:34 +02:00
parent 6e602cf5f5
commit 498e00c6f0
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

View file

@ -5,8 +5,15 @@ use PHP_CodeSniffer_File as PhpCsFile;
use Typo3Update\Sniffs\Options;
use Typo3Update\Sniffs\Removed\AbstractGenericUsage;
/**
* Check usage of removed or breaking changed TypoScript.
*/
class Typo3Update_Sniffs_Removed_TypoScriptSniff extends AbstractGenericUsage
{
/**
* Register sniff only for TypoScript.
* @var array<string>
*/
public $supportedTokenizers = [
'TYPOSCRIPT',
];