for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Conveyor package.
*
* (c) Jeroen Fiege <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Webcreate\Conveyor\Task\Result;
class ExecuteResult
{
protected $derived;
protected $removed;
/**
* Constructor.
* @param array $derived
* @param array $removed
public function __construct(array $derived = array(), array $removed = array())
$this->setDerived($derived);
$this->setRemoved($removed);
}
* Sets derived files
* @return \Webcreate\Conveyor\Task\Result\ExecuteResult
public function setDerived(array $derived)
$this->derived = $derived;
return $this;
* Gets derived files
* @return array
public function getDerived()
return $this->derived;
* Sets removed files
public function setRemoved(array $removed)
$this->removed = $removed;
* Gets removed files
public function getRemoved()
return $this->removed;