fix warnings

This commit is contained in:
2019-10-23 09:05:09 +02:00
committed by Roland Schneider
parent bf85c737d5
commit 9c0e2a56ee
8 changed files with 23 additions and 49 deletions

View File

@@ -1,7 +1,7 @@
<?php
namespace common\modules\event\widgets\day;
use common\modules\event\models\timetable\TimeTableMonthDay;
use yii\base\Widget;
use yii\bootstrap\Widget;
/** @noinspection PhpUnused */
@@ -12,15 +12,10 @@ use yii\base\Widget;
*
* @property TimeTableMonthDay $day
*/
class TimeTableMonthDayView extends \yii\bootstrap\Widget
class TimeTableMonthDayView extends Widget
{
public $day;
public function init(){
parent::init();
}
public function run(){
return $this->render('_day', [ 'day' => $this->day]);
}