Skip to content

Commit

Permalink
Fix documentation of ProcessorInterface (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
z38 authored and theofidry committed Feb 9, 2018
1 parent e5f06fd commit c36b8cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -295,7 +295,7 @@ final class UserProcessor implements ProcessorInterface
/**
* @inheritdoc
*/
public function preProcess($object)
public function preProcess(string $fixtureId, $object): void
{
if (false === $object instanceof User) {
return;
Expand All @@ -307,7 +307,7 @@ final class UserProcessor implements ProcessorInterface
/**
* @inheritdoc
*/
public function postProcess($object)
public function postProcess(string $fixtureId, $object): void
{
// do nothing
}
Expand Down

0 comments on commit c36b8cc

Please sign in to comment.