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