for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace BestIt\Sniffs\Commenting;
/**
* Class PropertyDocSniff
*
* @package BestIt\Sniffs\Commenting
* @author Nick Lubisch <[email protected]>
*/
class PropertyDocSniff extends ConstantDocSniff
{
* Returns which tokens should be listened to.
* @return int[] List of tokens which is to be listened to
public function getListenedTokens()
return [
T_VARIABLE
];
}