for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Kaliop\eZWorkflowEngineBundle\API\Value;
use Kaliop\eZMigrationBundle\API\Value\Migration;
/**
* @property-read string $signalName
*/
class Workflow extends Migration
{
protected $signalName;
public function __construct($name, $md5, $path, $executionDate = null, $status = 0, $executionError = null, $signalName = null)
$this->name = $name;
name
Kaliop\eZMigrationBundle\API\Value\Migration
$this->md5 = $md5;
md5
$this->path = $path;
path
$this->executionDate = $executionDate;
executionDate
$this->status = $status;
status
$this->executionError = $executionError;
executionError
$this->signalName = $signalName;
signalName
Kaliop\eZWorkflowEngineBundle\API\Value\Workflow
}