1 | <?php |
||
18 | final class NullVisitor extends LinkedVisitor |
||
19 | { |
||
20 | /** |
||
21 | * @var NullVisitor |
||
22 | */ |
||
23 | private static $instance = null; |
||
24 | |||
25 | /** |
||
26 | * @return \Cubiche\Core\Visitor\NullVisitor |
||
27 | */ |
||
28 | public static function create() |
||
36 | |||
37 | public function __construct() |
||
40 | |||
41 | /** |
||
42 | * {@inheritdoc} |
||
43 | */ |
||
44 | public function canHandlerVisitee(VisiteeInterface $visitee) |
||
48 | |||
49 | /** |
||
50 | * {@inheritdoc} |
||
51 | */ |
||
52 | protected function doVisit(VisiteeInterface $visitee, array $args, $fromParent = false) |
||
56 | } |
||
57 |