daux.io/libs/Processor.php

39 lines
694 B
PHP
Raw Normal View History

2015-07-17 18:34:00 +02:00
<?php namespace Todaymade\Daux;
use League\CommonMark\Environment;
use Symfony\Component\Console\Output\OutputInterface;
use Todaymade\Daux\Tree\Directory;
class Processor
{
/**
* @var Daux
*/
protected $daux;
/**
* @var OutputInterface
*/
protected $output;
/**
* @var integer
*/
protected $width;
public function __construct(Daux $daux, OutputInterface $output, $width)
{
$this->daux = $daux;
$this->output = $output;
$this->width = $width;
}
public function manipulateTree(Directory $root)
{
}
public function extendCommonMarkEnvironment(Environment $environment)
{
}
}