Skip to content

Instantly share code, notes, and snippets.

@padaVVan
Created January 26, 2017 13:55
Show Gist options
  • Save padaVVan/89737f833a9dad8bc296d282aa630de1 to your computer and use it in GitHub Desktop.
Save padaVVan/89737f833a9dad8bc296d282aa630de1 to your computer and use it in GitHub Desktop.
<?php
namespace <NS_HERE>;
use yii\base\Event;
/**
* Class PropertyChangeEvent
*/
class PropertyChangeEvent extends Event
{
/**
* Наименование свойства
* @var string
*/
public $key;
/**
* Старое значение свойства
* @var mixed
*/
public $fromValue;
/**
* Новое значение свойства
* @var mixed
*/
public $toValue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment