Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

Commit

Permalink
#6927 #6278 - adding missing docblock parameters, minor cs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocramius committed Nov 27, 2014
1 parent 49ef580 commit a653da0
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions tests/ZendTest/Validator/CreditCardTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -200,16 +200,15 @@ public function jcbValues()
*
* @dataProvider jcbValues
*
* @param string $input
* @param bool $expected
*
* @group 6278
* @group 6927
*/
public function testJcbCard($input, $expected)
{
$validator = new CreditCard(
array(
'type' => CreditCard::JCB
)
);
$validator = new CreditCard(array('type' => CreditCard::JCB));

$this->assertEquals($expected, $validator->isValid($input));
}
Expand Down

0 comments on commit a653da0

Please sign in to comment.