for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Solidifier\Visitors\PreAnalyze;
use Solidifier\Parser\Visitors\ContextualVisitor;
use PhpParser\Node;
use PhpParser\Node\Stmt\Class_;
use PhpParser\Node\Stmt\Interface_;
use PhpParser\Node\Stmt\Trait_;
class ObjectTypes extends ContextualVisitor
{
private
$types;
$types
The PSR-2 coding standard requires that all properties in a class have their visibility explicitly declared. If you declare a property using
class A { var $property; }
the property is implicitly global.
To learn more about the PSR-2, please see the PHP-FIG site on the PSR-2.
public function __construct()
parent::__construct();
$this->types = array();
}
protected function enter(Node $node)
if($node instanceof Class_ || $node instanceof Interface_ || $node instanceof Trait_)
$this->types[$this->currentObjectType->fullname] = $this->currentObjectType->type;
public function getObjectTypes()
return $this->types;
The PSR-2 coding standard requires that all properties in a class have their visibility explicitly declared. If you declare a property using
the property is implicitly global.
To learn more about the PSR-2, please see the PHP-FIG site on the PSR-2.