Skip to content

Commit

Permalink
Merge pull request #5 from vivid-arch/analysis-KZPxY3
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
meletisf authored Mar 28, 2020
2 parents f1f53d1 + 054b08d commit 5c2effa
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/MarshalTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,12 @@ protected function marshal($command, ArrayAccess $source, array $extras = [])
*
* @return mixed
*/
protected function getParameterValueForCommand($command, ArrayAccess $source,
ReflectionParameter $parameter, array $extras = [])
protected function getParameterValueForCommand(
$command,
ArrayAccess $source,
ReflectionParameter $parameter,
array $extras = []
)
{
if (array_key_exists($parameter->name, $extras)) {
return $extras[$parameter->name];
Expand Down

0 comments on commit 5c2effa

Please sign in to comment.