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_FUNCTION;
/**
* Helps you with the registration of the method tests.
*
* @author blange <[email protected]>
* @package BestIt\Sniffs
*/
trait FunctionRegistrationTrait
{
* Sniffs for constants.
* @return array
public function register(): array
return [T_FUNCTION];
}