for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Modules\Setting\Events;
class SettingWasUpdated
{
/**
* @var string The setting name
*/
public $name;
* @var string|array
public $values;
* @var string|array Containing the old values
public $oldValues;
* @var bool
public $isTranslatable;
public function __construct($name, $isTranslatable, $values, $oldValues = null)
$this->name = $name;
$this->isTranslatable = $isTranslatable;
$this->values = $values;
$this->oldValues = $oldValues;
}