for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace BestIt\Sniffs\Commenting;
use BestIt\Sniffs\ConstantRegistrationTrait;
/**
* Checks the structure of the constant summary.
*
* @author blange <[email protected]>
* @package BestIt\Sniffs\Commenting
*/
class ConstantDocSniff extends AbstractDocSniff
{
use ConstantRegistrationTrait;
}