framework/src/Events/BuildClientView.php

35 lines
573 B
PHP
Raw Normal View History

2015-07-18 21:29:47 +08:00
<?php namespace Flarum\Events;
use Flarum\Support\ClientAction;
use Flarum\Support\ClientView;
class BuildClientView
{
/**
* @var ClientAction
*/
protected $action;
/**
* @var ClientView
*/
protected $view;
/**
* @var array
*/
protected $keys;
/**
* @param ClientAction $action
* @param ClientView $view
* @param array $keys
*/
public function __construct($action, $view, &$keys)
{
$this->action = $action;
$this->view = $view;
$this->keys = &$keys;
}
}