Skip to content

Commit

Permalink
Further coding standards fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
maximal committed Feb 24, 2014
1 parent b560398 commit 5d14d78
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion apps/basic/tests/acceptance/_console.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
],
],
]
);
);
2 changes: 1 addition & 1 deletion apps/basic/tests/functional/_console.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
],
],
]
);
);
2 changes: 1 addition & 1 deletion apps/basic/tests/unit/_console.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
],
],
]
);
);
2 changes: 1 addition & 1 deletion apps/basic/tests/unit/models/ContactFormTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function testContact()
expect('email file should exist', file_exists($this->getMessageFile()))->true();
});

$this->specify('message should contain correct data', function () use($model) {
$this->specify('message should contain correct data', function () use ($model) {
$emailMessage = file_get_contents($this->getMessageFile());

expect('email should contain user name', $emailMessage)->contains($model->name);
Expand Down
2 changes: 1 addition & 1 deletion apps/basic/views/layouts/main.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
['label' => 'Contact', 'url' => ['/site/contact']],
Yii::$app->user->isGuest ?
['label' => 'Login', 'url' => ['/site/login']] :
['label' => 'Logout (' . Yii::$app->user->identity->username . ')' ,
['label' => 'Logout (' . Yii::$app->user->identity->username . ')',
'url' => ['/site/logout'],
'linkOptions' => ['data-method' => 'post']],
],
Expand Down

0 comments on commit 5d14d78

Please sign in to comment.