Переглянути джерело

Code style fixes for layouts

Alexander Makarov 12 роки тому
батько
коміт
2bd0ffaa4c
1 змінених файлів з 5 додано та 5 видалено
  1. 5 5
      views/layouts/main.php

+ 5 - 5
views/layouts/main.php

@@ -11,16 +11,16 @@ use app\assets\AppAsset;
  */
 AppAsset::register($this);
 ?>
-<?php $this->beginPage(); ?>
+<?php $this->beginPage() ?>
 <!DOCTYPE html>
 <html lang="<?= Yii::$app->language ?>">
 <head>
 	<meta charset="<?= Yii::$app->charset ?>"/>
 	<title><?= Html::encode($this->title) ?></title>
-	<?php $this->head(); ?>
+	<?php $this->head() ?>
 </head>
 <body>
-<?php $this->beginBody(); ?>
+<?php $this->beginBody() ?>
 	<?php
 		NavBar::begin([
 			'brandLabel' => 'My Company',
@@ -59,7 +59,7 @@ AppAsset::register($this);
 		</div>
 	</footer>
 
-<?php $this->endBody(); ?>
+<?php $this->endBody() ?>
 </body>
 </html>
-<?php $this->endPage(); ?>
+<?php $this->endPage() ?>