for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Hechoenlaravel\JarvisFoundation\Flows;
/**
* Class CreateStepCommand
* @package Hechoenlaravel\JarvisFoundation\Flows
*/
class CreateStepCommand
{
* @var
public $flow;
public $name;
public $description;
public $order;
public $isLast;
* @param $flow
* @param $name
* @param $description
* @param int $order
* @param int $isLast
public function __construct(Flow $flow, $name, $description, $order = null, $isLast = 0)
$this->flow = $flow;
$this->name = $name;
$this->description = $description;
$this->order = $order;
$this->isLast = $isLast;
}