Skip to content

Commit

Permalink
Removed unnecessary return statement.
Browse files Browse the repository at this point in the history
  • Loading branch information
noggan committed Apr 5, 2017
1 parent 9a38e87 commit 9555d07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Context/EntityFixtureContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -462,11 +462,11 @@ public function anExistingWithParentAndValues($type, $parentType, $parentId, Tab
* @param $type
* @param $alias
*
* @return object
* @return void
*/
public function anExistingOnAlias($type, $alias)
{
return $this->anExistingOnAliasWithValues($type, $alias, new TableNode([]));
$this->anExistingOnAliasWithValues($type, $alias, new TableNode([]));
}

/**
Expand Down

0 comments on commit 9555d07

Please sign in to comment.