Skip to content

Commit

Permalink
Applied phpcs rules
Browse files Browse the repository at this point in the history
  • Loading branch information
ruudboon authored and niden committed Dec 12, 2018
1 parent 6081f77 commit 4f9a8b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/Security/Random/NumberCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ public function securityRandomNumber(UnitTester $I)
{
$I->wantToTest("Security\Random - number()");
$random = new \Phalcon\Security\Random;
$I->expectException(\Exception::class, function() {
$I->expectException(\Exception::class, function () {
$randNumber = $random->number();
});

$I->expectException(\Exception::class, function() {
$I->expectException(\Exception::class, function () {
$randNumber = $random->number(-1);
});

Expand Down

0 comments on commit 4f9a8b2

Please sign in to comment.