Created
January 26, 2017 13:55
-
-
Save padaVVan/89737f833a9dad8bc296d282aa630de1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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