Skip to content

Commit

Permalink
assertSame, fix lint
Browse files Browse the repository at this point in the history
Assert Same method no longer lints poorly if the object is an array or an object
  • Loading branch information
hotline-emu committed Apr 29, 2019
1 parent e93b5d2 commit e6a5e43
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ArrayAssertsTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ abstract public function assertInternalType($expected, $actual, $message = '');
*
* Ensures this method must be provided by classes using this trait.
*
* @param string $expected The expected value.
* @param mixed $actual The actual value.
* @param string $message Optional error message to give upon failure.
* @param string|array|object $expected The expected value.
* @param mixed $actual The actual value.
* @param string $message Optional error message to give upon failure.
*
* @return void
*/
Expand Down

0 comments on commit e6a5e43

Please sign in to comment.