Skip to content

Commit

Permalink
Fix CS/WS issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Mar 6, 2018
1 parent bdfae3c commit c009b40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Framework/Constraint/IsType.php
Expand Up @@ -48,7 +48,7 @@ class IsType extends Constraint
'string' => true,
'scalar' => true,
'callable' => true,
'iterable' => true,
'iterable' => true
];

/**
Expand Down
1 change: 1 addition & 0 deletions tests/Framework/Constraint/IsTypeTest.php
Expand Up @@ -99,6 +99,7 @@ public function testIterableTypeIsSupported(): void
$this->assertTrue($constraint->evaluate([], '', true));
$this->assertEquals('is of type "iterable"', $constraint->toString());
}

/**
* Removes spaces in front of newlines
*
Expand Down

0 comments on commit c009b40

Please sign in to comment.