File: /home/accemeff/vendor/craftcms/cms/src/events/DefineRulesEvent.php
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license https://craftcms.github.io/license/
*/
namespace craft\events;
use yii\base\Event;
/**
* DefineRulesEvent class.
*
* @author Pixel & Tonic, Inc. <support@pixelandtonic.com>
* @since 3.1
*/
class DefineRulesEvent extends Event
{
// Properties
// =========================================================================
/**
* @var array The model rules
*/
public $rules = [];
}