mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-05 15:04:38 +01:00
11 lines
286 B
PHP
11 lines
286 B
PHP
<?php if (method_exists($this, 'beginPage')): ?>
|
|
<?php $this->beginPage(); ?>
|
|
<?php endif; ?>
|
|
Exception View
|
|
<?php if (method_exists($this, 'endBody')): ?>
|
|
<?php $this->endBody(); ?>
|
|
<?php endif; ?>
|
|
<?php if (method_exists($this, 'endPage')): ?>
|
|
<?php $this->endPage(); ?>
|
|
<?php endif;
|