MethodDeclarationSniff.php in Coder 8.2
Same filename and directory in other branches
Namespace
Drupal\Sniffs\MethodsFile
coder_sniffer/Drupal/Sniffs/Methods/MethodDeclarationSniff.phpView source
<?php
/**
* \Drupal\Sniffs\Methods\MethodDeclarationSniff.
*
* @category PHP
* @package PHP_CodeSniffer
* @link http://pear.php.net/package/PHP_CodeSniffer
*/
namespace Drupal\Sniffs\Methods;
use PHP_CodeSniffer\Sniffs\AbstractScopeSniff;
use PHP_CodeSniffer\Standards\PSR2\Sniffs\Methods\MethodDeclarationSniff as PSR2MethodDeclarationSniff;
/**
* Checks that the method declaration is correct.
*
* Extending
* \PHP_CodeSniffer\Standards\PSR2\Sniffs\Methods\MethodDeclarationSniff
* to also support traits.
*
* @category PHP
* @package PHP_CodeSniffer
* @link http://pear.php.net/package/PHP_CodeSniffer
*/
class MethodDeclarationSniff extends PSR2MethodDeclarationSniff {
/**
* Constructor.
*/
public function __construct() {
AbstractScopeSniff::__construct(array(
T_CLASS,
T_INTERFACE,
T_TRAIT,
), array(
T_FUNCTION,
));
}
}
//end class
Classes
Name | Description |
---|---|
MethodDeclarationSniff | Checks that the method declaration is correct. |