@@ -46,7 +46,7 @@ |
||
| 46 | 46 | |
| 47 | 47 | @chdir(Yii::getAlias('@app')); |
| 48 | 48 | |
| 49 | - $this->output('The directory the health commands is applying to: ' . Yii::getAlias('@app')); |
|
| 49 | + $this->output('The directory the health commands is applying to: '.Yii::getAlias('@app')); |
|
| 50 | 50 | |
| 51 | 51 | foreach ($this->folders as $folder => $writable) { |
| 52 | 52 | $mode = ($writable) ? 0777 : 0775; |
@@ -4,7 +4,6 @@ |
||
| 4 | 4 | |
| 5 | 5 | use Yii; |
| 6 | 6 | use yii\helpers\FileHelper; |
| 7 | -use yii\helpers\Console; |
|
| 8 | 7 | use yii\imagine\Image; |
| 9 | 8 | |
| 10 | 9 | /** |
@@ -21,5 +21,5 @@ |
||
| 21 | 21 | /** |
| 22 | 22 | * @var string The path to the model which is the provider for the rules and fields. |
| 23 | 23 | */ |
| 24 | - public $modelClass = '<?= $modelClass;?>'; |
|
| 24 | + public $modelClass = '<?= $modelClass; ?>'; |
|
| 25 | 25 | } |
| 26 | 26 | \ No newline at end of file |
@@ -49,7 +49,7 @@ |
||
| 49 | 49 | */ |
| 50 | 50 | public function parse($value, $sub) |
| 51 | 51 | { |
| 52 | - return Html::a(empty($sub) ? $value : $sub, 'tel:' . $this->ensureNumber($value)); |
|
| 52 | + return Html::a(empty($sub) ? $value : $sub, 'tel:'.$this->ensureNumber($value)); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | private function ensureNumber($number) |
@@ -21,5 +21,5 @@ |
||
| 21 | 21 | /** |
| 22 | 22 | * @var string The path to the model which is the provider for the rules and fields. |
| 23 | 23 | */ |
| 24 | - public $modelClass = '<?= $modelClass;?>'; |
|
| 24 | + public $modelClass = '<?= $modelClass; ?>'; |
|
| 25 | 25 | } |
| 26 | 26 | \ No newline at end of file |
@@ -157,7 +157,7 @@ |
||
| 157 | 157 | return $response->send(); |
| 158 | 158 | } |
| 159 | 159 | |
| 160 | - $response->on(Response::EVENT_AFTER_SEND, function ($event) use ($action) { |
|
| 160 | + $response->on(Response::EVENT_AFTER_SEND, function($event) use ($action) { |
|
| 161 | 161 | $this->callActionCallable($action->id, $event->sender->content); |
| 162 | 162 | }); |
| 163 | 163 | |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | { |
| 52 | 52 | self::addGraph([ |
| 53 | 53 | "@context" => "http://schema.org", |
| 54 | - "name" => $firstname . ' ' . $lastname, |
|
| 54 | + "name" => $firstname.' '.$lastname, |
|
| 55 | 55 | "givenName" => $firstname, |
| 56 | 56 | "familyName" => $lastname, |
| 57 | 57 | "jobTitle" => $jobTitle |
@@ -115,8 +115,8 @@ discard block |
||
| 115 | 115 | private static function registerView() |
| 116 | 116 | { |
| 117 | 117 | if (self::$_view === null) { |
| 118 | - Yii::$app->view->on(View::EVENT_BEGIN_BODY, function ($event) { |
|
| 119 | - echo '<script type="application/ld+json">' . Json::encode($event->sender->params) . '</script>'; |
|
| 118 | + Yii::$app->view->on(View::EVENT_BEGIN_BODY, function($event) { |
|
| 119 | + echo '<script type="application/ld+json">'.Json::encode($event->sender->params).'</script>'; |
|
| 120 | 120 | }); |
| 121 | 121 | |
| 122 | 122 | self::$_view = true; |
@@ -53,7 +53,7 @@ |
||
| 53 | 53 | public function setHref($href) |
| 54 | 54 | { |
| 55 | 55 | if (StringHelper::startsWith($href, '//')) { |
| 56 | - $this->_href = Url::base(true) . str_replace('//', '/', $href); |
|
| 56 | + $this->_href = Url::base(true).str_replace('//', '/', $href); |
|
| 57 | 57 | } else { |
| 58 | 58 | $this->_href = Url::ensureHttp($href); |
| 59 | 59 | } |
@@ -210,9 +210,9 @@ |
||
| 210 | 210 | if (file_exists($this->_baseYiiFile)) { |
| 211 | 211 | defined('LUYA_YII_VENDOR') ?: define('LUYA_YII_VENDOR', dirname($this->_baseYiiFile)); |
| 212 | 212 | |
| 213 | - $require = require_once(dirname($this->_baseYiiFile) . DIRECTORY_SEPARATOR . 'BaseYii.php'); |
|
| 213 | + $require = require_once(dirname($this->_baseYiiFile).DIRECTORY_SEPARATOR.'BaseYii.php'); |
|
| 214 | 214 | |
| 215 | - require_once($this->getCoreBasePath() . '/Yii.php'); |
|
| 215 | + require_once($this->getCoreBasePath().'/Yii.php'); |
|
| 216 | 216 | |
| 217 | 217 | Yii::setAlias('@luya', $this->getCoreBasePath()); |
| 218 | 218 | return $require; |
@@ -18,5 +18,5 @@ |
||
| 18 | 18 | } |
| 19 | 19 | |
| 20 | 20 | spl_autoload_register(['Yii', 'autoload'], true, true); |
| 21 | -Yii::$classMap = require(LUYA_YII_VENDOR . '/classes.php'); |
|
| 21 | +Yii::$classMap = require(LUYA_YII_VENDOR.'/classes.php'); |
|
| 22 | 22 | Yii::$container = new yii\di\Container(); |