1
0
mirror of https://github.com/fzaninotto/Faker.git synced 2025-03-24 09:19:50 +01:00

Fix coding standards

This commit is contained in:
Francois Zaninotto 2013-09-23 23:03:10 +02:00
parent 52a54bebeb
commit b897e61489
2 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@ class Payment extends Base
public static function randomCardNumber($mask = null)
{
if(is_null($mask)) {
if (is_null($mask)) {
$cp = static::randomElement(static::$cardsParams);
$mask = $cp['mask'];
}

View File

@ -29,4 +29,4 @@ class PaymentTest extends \PHPUnit_Framework_TestCase
}
}
}