Prado\Util\TClassBehaviorEventParameter::__construct PHP Метод

__construct() публичный Метод

Holds the parameters for the Class Behavior Events
public __construct ( string $class, string $name, object $behavior, $priority )
$class string this is the class to get the behavior
$name string the name of the behavior
$behavior object this is the behavior to implement the class behavior
    public function __construct($class, $name, $behavior, $priority)
    {
        $this->_class = $class;
        $this->_name = $name;
        $this->_behavior = $behavior;
        $this->_priority = $priority;
    }