Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

Commit

Permalink
Fix CS/WS issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Dec 16, 2017
1 parent fe2d441 commit 322aee0
Show file tree
Hide file tree
Showing 13 changed files with 161 additions and 157 deletions.
2 changes: 1 addition & 1 deletion src/Builder/Identity.php
Expand Up @@ -24,7 +24,7 @@ interface Identity
*
* @note The identifier is unique per mock object.
*
* @param string $id Unique identification of expectation.
* @param string $id unique identification of expectation
*/
public function id($id);
}
16 changes: 8 additions & 8 deletions src/Builder/InvocationMocker.php
Expand Up @@ -204,9 +204,9 @@ public function after($id)
/**
* @param array ...$arguments
*
* @return InvocationMocker
*
* @throws RuntimeException
*
* @return InvocationMocker
*/
public function with(...$arguments)
{
Expand All @@ -220,9 +220,9 @@ public function with(...$arguments)
/**
* @param array ...$arguments
*
* @return InvocationMocker
*
* @throws RuntimeException
*
* @return InvocationMocker
*/
public function withConsecutive(...$arguments)
{
Expand All @@ -234,9 +234,9 @@ public function withConsecutive(...$arguments)
}

/**
* @return InvocationMocker
*
* @throws RuntimeException
*
* @return InvocationMocker
*/
public function withAnyParameters()
{
Expand All @@ -250,9 +250,9 @@ public function withAnyParameters()
/**
* @param Constraint|string $constraint
*
* @return InvocationMocker
*
* @throws RuntimeException
*
* @return InvocationMocker
*/
public function method($constraint)
{
Expand Down
4 changes: 2 additions & 2 deletions src/Builder/Match.php
Expand Up @@ -17,8 +17,8 @@ interface Match extends Stub
/**
* Defines the expectation which must occur before the current is valid.
*
* @param string $id The identification of the expectation that should
* occur before this one.
* @param string $id the identification of the expectation that should
* occur before this one
*
* @return Stub
*/
Expand Down

0 comments on commit 322aee0

Please sign in to comment.