for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Coco\SourceWatcher\Core\IO\Inputs;
/**
* Class FileInput
* @package Coco\SourceWatcher\Core\Inputs
*/
class FileInput extends Input
{
private ?string $fileLocation;
public function __construct ( string $fileLocation )
$this->fileLocation = $fileLocation;
}
public function getInput ()
return $this->fileLocation;
public function setInput ( $input )
$this->fileLocation = $input;