for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Hechoenlaravel\JarvisFoundation\Flows;
/**
* Class CreateTransitionCommand
* @package Hechoenlaravel\JarvisFoundation\Flows
*/
class CreateTransitionCommand
{
* @var
public $flow;
public $from;
public $to;
* @param Flow $flow
* @param Step $from
* @param Step $to
public function __construct(Flow $flow, Step $from, Step $to)
$this->flow = $flow;
$this->from = $from;
$this->to = $to;
}