for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace BestIt\Sniffs;
use const T_VARIABLE;
/**
* Helps you with the registration of the var sniffs.
*
* @author blange <[email protected]>
* @package BestIt\Sniffs
*/
trait VariableRegistrationTrait
{
* Sniffs for variables.
* @return array
public function register(): array
return [
T_VARIABLE
];
}