Skip to content

Commit

Permalink
Removed useless code
Browse files Browse the repository at this point in the history
  • Loading branch information
kukulich committed Jan 21, 2018
1 parent 08dd807 commit 60eee4e
Showing 1 changed file with 0 additions and 33 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,37 +18,4 @@ public function withNullableParameterTypeHint($a)

}

/**
* @phpcsSuppress SlevomatCodingStandard.TypeHints.TypeHintDeclaration.MissingReturnTypeHint
* @return object|null
*/
public function withReturnTypeHintSuppress()
{
return null;
}

/**
* @phpcsSuppress SlevomatCodingStandard.TypeHints.TypeHintDeclaration.MissingParameterTypeHint
* @param object|null $a
*/
public function withParameterTypeHintSuppress($a)
{
}

/**
* @phpcsSuppress SlevomatCodingStandard.TypeHints.TypeHintDeclaration.UselessDocComment
* @param object|null $a
*/
public function withNullableParameterTypeHintAndSuppressedUselessDocComment(?object $a)
{
}

/**
* @return object[]|null
*/
public function returnsNullableArrayOfObjects(): ?array
{
return [];
}

}

0 comments on commit 60eee4e

Please sign in to comment.