for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Padosoft\Uploadable\Events;
use Illuminate\Database\Eloquent\Model;
class UploadDeleteExecuted
{
/**
* @var String
*/
public $attributeName;
public $attributeValue;
* @var Model
public $target;
public function __construct($attributeName, $attributeValue, $target)
$this->attributeName = $attributeName;
$this->attributeValue = $attributeValue;
$this->target = $target;
}