Initial commit
This commit is contained in:
18
src/Output.php
Normal file
18
src/Output.php
Normal 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user