Skip to content

Commit

Permalink
Correct styling of PHPDoc.
Browse files Browse the repository at this point in the history
 Remove extra blank line between paramters and return annotation.
  • Loading branch information
marshall-davis committed Nov 10, 2021
1 parent 4bd8c43 commit ab2968d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/Illuminate/Testing/TestResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,6 @@ public function assertJsonValidationErrors($errors, $responseKey = 'errors')
*
* @param string $key
* @param string $responseKey
*
* @return $this
*/
public function assertJsonValidationErrorFor($key, $responseKey = 'errors')
Expand Down
3 changes: 2 additions & 1 deletion tests/Testing/TestResponseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ public function testAssertViewHas()

public function testAssertViewHasModel()
{
$model = new class extends Model {
$model = new class extends Model
{
public function is($model)
{
return $this == $model;
Expand Down

0 comments on commit ab2968d

Please sign in to comment.