@@ -24,15 +24,15 @@ |
||
| 24 | 24 | 'rules' => [ |
| 25 | 25 | [ |
| 26 | 26 | 'allow' => true, |
| 27 | - 'actions' => ['index'], |
|
| 28 | - 'roles' => ['?', '@'], |
|
| 27 | + 'actions' => [ 'index' ], |
|
| 28 | + 'roles' => [ '?', '@' ], |
|
| 29 | 29 | ], |
| 30 | 30 | ], |
| 31 | 31 | ], |
| 32 | 32 | 'verbs' => [ |
| 33 | 33 | 'class' => VerbFilter::class, |
| 34 | 34 | 'actions' => [ |
| 35 | - 'index' => ['get'], |
|
| 35 | + 'index' => [ 'get' ], |
|
| 36 | 36 | ], |
| 37 | 37 | ] |
| 38 | 38 | ]); |
@@ -27,7 +27,7 @@ |
||
| 27 | 27 | public function afterAction($action, $result) |
| 28 | 28 | { |
| 29 | 29 | if ($action->id == 'view') { |
| 30 | - $modelId = $action->controller->actionParams['id']; |
|
| 30 | + $modelId = $action->controller->actionParams[ 'id' ]; |
|
| 31 | 31 | Feedback::fixReadStatus((int)$modelId); |
| 32 | 32 | } |
| 33 | 33 | |
@@ -40,7 +40,7 @@ |
||
| 40 | 40 | $home = Home::findOne($homeId); |
| 41 | 41 | |
| 42 | 42 | if (null === $home) { |
| 43 | - throw new NotFoundHttpException('Record with id ' . $homeId . ' does not exist'); |
|
| 43 | + throw new NotFoundHttpException('Record with id '.$homeId.' does not exist'); |
|
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | $home->default = 1; |
@@ -40,7 +40,7 @@ |
||
| 40 | 40 | $contact = Contact::findOne($contactId); |
| 41 | 41 | |
| 42 | 42 | if (null === $contact) { |
| 43 | - throw new NotFoundHttpException('Record with id ' . $contactId . ' does not exist'); |
|
| 43 | + throw new NotFoundHttpException('Record with id '.$contactId.' does not exist'); |
|
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | $contact->default = 1; |
@@ -79,7 +79,7 @@ |
||
| 79 | 79 | */ |
| 80 | 80 | private function readSitemapFile() |
| 81 | 81 | { |
| 82 | - $filePath = Yii::getAlias($this->savePathAlias) . '/' . $this->sitemapFileName; |
|
| 82 | + $filePath = Yii::getAlias($this->savePathAlias).'/'.$this->sitemapFileName; |
|
| 83 | 83 | |
| 84 | 84 | if (!file_exists($filePath)) { |
| 85 | 85 | return null; |
@@ -43,11 +43,11 @@ discard block |
||
| 43 | 43 | */ |
| 44 | 44 | protected function getAdditionFields(): array |
| 45 | 45 | { |
| 46 | - $additionFields = []; |
|
| 46 | + $additionFields = [ ]; |
|
| 47 | 47 | |
| 48 | 48 | if ($this->action->id == 'create' || $this->action->id == 'update') { |
| 49 | - $additionFields['roles'] = $this->validateComponent->getAuthManager()->getRoles(); |
|
| 50 | - $additionFields['positions'] = Position::getPositions(); |
|
| 49 | + $additionFields[ 'roles' ] = $this->validateComponent->getAuthManager()->getRoles(); |
|
| 50 | + $additionFields[ 'positions' ] = Position::getPositions(); |
|
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | return $additionFields; |
@@ -70,6 +70,6 @@ discard block |
||
| 70 | 70 | */ |
| 71 | 71 | protected function getSearchModelName():string |
| 72 | 72 | { |
| 73 | - return \Yii::$app->user->identityClass . 'Search'; |
|
| 73 | + return \Yii::$app->user->identityClass.'Search'; |
|
| 74 | 74 | } |
| 75 | 75 | } |
@@ -40,7 +40,7 @@ |
||
| 40 | 40 | $about = About::findOne($aboutId); |
| 41 | 41 | |
| 42 | 42 | if (null === $about) { |
| 43 | - throw new NotFoundHttpException('Record with id ' . $aboutId . ' does not exist'); |
|
| 43 | + throw new NotFoundHttpException('Record with id '.$aboutId.' does not exist'); |
|
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | $about->default = 1; |
@@ -26,16 +26,16 @@ discard block |
||
| 26 | 26 | 'rules' => [ |
| 27 | 27 | [ |
| 28 | 28 | 'allow' => true, |
| 29 | - 'actions' => ['index', 'captcha'], |
|
| 30 | - 'roles' => ['?', '@'], |
|
| 29 | + 'actions' => [ 'index', 'captcha' ], |
|
| 30 | + 'roles' => [ '?', '@' ], |
|
| 31 | 31 | ], |
| 32 | 32 | ], |
| 33 | 33 | ], |
| 34 | 34 | 'verbs' => [ |
| 35 | 35 | 'class' => VerbFilter::class, |
| 36 | 36 | 'actions' => [ |
| 37 | - 'index' => ['get', 'post'], |
|
| 38 | - 'captcha' => ['get'], |
|
| 37 | + 'index' => [ 'get', 'post' ], |
|
| 38 | + 'captcha' => [ 'get' ], |
|
| 39 | 39 | ], |
| 40 | 40 | ], |
| 41 | 41 | ]); |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | $feedback = new Feedback(); |
| 64 | 64 | $feedback->setScenario(Feedback::SCENARIO_CONTACT); |
| 65 | 65 | |
| 66 | - if ($feedback->load(Yii::$app->request->post()) && $feedback->contact(Yii::$app->params['adminEmail'])) { |
|
| 66 | + if ($feedback->load(Yii::$app->request->post()) && $feedback->contact(Yii::$app->params[ 'adminEmail' ])) { |
|
| 67 | 67 | |
| 68 | 68 | Yii::$app->session->setFlash('contactFormSubmitted'); |
| 69 | 69 | |
@@ -26,13 +26,13 @@ |
||
| 26 | 26 | 'rules' => [ |
| 27 | 27 | [ |
| 28 | 28 | 'allow' => true, |
| 29 | - 'actions' => ['reg', 'login', 'captcha'], |
|
| 30 | - 'roles' => ['?'], |
|
| 29 | + 'actions' => [ 'reg', 'login', 'captcha' ], |
|
| 30 | + 'roles' => [ '?' ], |
|
| 31 | 31 | ], |
| 32 | 32 | [ |
| 33 | 33 | 'allow' => true, |
| 34 | - 'actions' => ['logout'], |
|
| 35 | - 'roles' => ['@'], |
|
| 34 | + 'actions' => [ 'logout' ], |
|
| 35 | + 'roles' => [ '@' ], |
|
| 36 | 36 | ], |
| 37 | 37 | ], |
| 38 | 38 | ], |