for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PHPMND\Extension;
use PhpParser\Node;
use PhpParser\Node\Stmt\PropertyProperty;
/**
* Class PropertyExtension
*
* @package PHPMND\Extension
*/
class PropertyExtension implements Extension
{
* @inheritdoc
public function extend(Node $node)
return $node->getAttribute('parent') instanceof PropertyProperty;
}