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