for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace DependencyAnalyzer\DependencyGraph\DependencyTypes;
use DependencyAnalyzer\DependencyGraph;
class ImplementsClass extends Base
{
public function getType(): string
return DependencyGraph::TYPE_IMPLEMENTS;
}
public function isEqual(Base $that): bool
return $this->getType() === $that->getType();
public function toString(): string
return $this->getType();