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