Initial commit

This commit is contained in:
2016-12-22 03:15:02 +01:00
commit 58f27830f4
20 changed files with 654 additions and 0 deletions

18
src/Output.php Normal file
View File

@ -0,0 +1,18 @@
<?php
namespace VfxApply;
class Output
{
protected $filename;
public function setFilename($filename)
{
$this->filename = $filename;
}
public function getFilename()
{
return $this->filename;
}
}