Skip to content

Commit

Permalink
Fix static and integration test.
Browse files Browse the repository at this point in the history
  • Loading branch information
nmalevanec committed Dec 20, 2018
1 parent 9a7f3e6 commit 415288f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,8 @@ public function layoutArgumentsDataProvider()
*/
protected function isSkippedArgument(array $argumentData)
{
// Do not take into account argument name and parameters
unset($argumentData['name']);
unset($argumentData['param']);
// Do not take into account argument name, shared and parameters
unset($argumentData['name'], $argumentData['param'], $argumentData['shared']);

$isUpdater = isset($argumentData['updater']);
unset($argumentData['updater']);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,7 @@ public function __construct(
}

/**
* {@inheritdoc}
* @return object
* @throws \InvalidArgumentException
* @throws \UnexpectedValueException
* @inheritdoc
*/
public function evaluate(array $data)
{
Expand Down

0 comments on commit 415288f

Please sign in to comment.