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