for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PPP\DataModel;
/**
* A missing node.
*
* @licence AGPLv3+
* @author Thomas Pellissier Tanon
*/
class MissingNode extends AbstractNode {
* @see AbstractNode::getType
public function getType() {
return 'missing';
}
* @see AbstractNode::equals
public function equals($target) {
return $target instanceof self;