LAV45/yii2-settings

View on GitHub
src/events/GetEvent.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * @link https://github.com/LAV45/yii2-settings
 * @copyright Copyright (c) 2016 LAV45
 * @author Alexey Loban <lav451@gmail.com>
 * @license http://opensource.org/licenses/BSD-3-Clause
 */

namespace lav45\settings\events;

use yii\base\Event;

/**
 * Class GetEvent
 * @package lav45\settings\events
 */
class GetEvent extends Event
{
    /**
     * @var string
     */
    public $key;
    /**
     * @var string
     */
    public $value;
}