Eccube\Event\TemplateEvent::__construct PHP Method

__construct() public method

TemplateEvent constructor.
public __construct ( string $view, string $source, array $parameters = [], Response $response = null )
$view string
$source string
$parameters array
$response Symfony\Component\HttpFoundation\Response
    public function __construct($view, $source, array $parameters = array(), Response $response = null)
    {
        $this->view = $view;
        $this->source = $source;
        $this->parameters = $parameters;
        $this->response = $response;
    }