for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Hechoenlaravel\JarvisFoundation\FieldGenerator\Events;
use Hechoenlaravel\JarvisFoundation\Events\Event;
use Hechoenlaravel\JarvisFoundation\FieldGenerator\FieldModel;
/**
* Class EntityWasCreated
* @package Hechoenlaravel\JarvisFoundation\FieldGenerator\Events
*/
class FieldWasCreated extends Event
{
* Field generated
* @var
public $field;
* The model created
* @param FieldModel $model
public function __construct(FieldModel $model)
$this->field = $model;
}