for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Solidifier\Analyzers;
use Solidifier\VisitableAnalyzer;
use Solidifier\Visitor;
class FakeAnalyzer implements VisitableAnalyzer
{
private
$visitors;
$visitors
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()
$this->visitors = array();
}
public function addVisitor($traverseName, Visitor $visitor)
if(! isset($this->visitors[$traverseName]))
$this->visitors[$traverseName] = array();
$this->visitors[$traverseName][] = $visitor;
return $this;
public function getVisitors()
return $this->visitors;
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.