2015-07-21 09:49:49 +02:00
|
|
|
<?php namespace Todaymade\Daux\Extension;
|
|
|
|
|
|
|
|
use Todaymade\Daux\Tree\Root;
|
|
|
|
|
2016-07-27 21:32:51 +02:00
|
|
|
class Processor extends \Todaymade\Daux\Processor
|
|
|
|
{
|
2015-07-21 09:49:49 +02:00
|
|
|
public function manipulateTree(Root $root)
|
|
|
|
{
|
2015-12-12 00:22:43 +01:00
|
|
|
print_r($root->dump());
|
2015-07-21 09:49:49 +02:00
|
|
|
}
|
|
|
|
}
|