Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
bakura10 committed May 17, 2014
1 parent 197b00e commit e6feb51
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Hydrator/ArraySerializableHydrator.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ public function extract($object)
{
if (!is_callable([$object, 'getArrayCopy'])) {
throw new Exception\BadMethodCallException(sprintf(
'%s expects the provided object to implement getArrayCopy()', __METHOD__
'%s expects the provided object to implement getArrayCopy()',
__METHOD__
));
}

Expand Down Expand Up @@ -65,7 +66,8 @@ public function hydrate(array $data, $object)
$object->populate($replacement);
} else {
throw new Exception\BadMethodCallException(sprintf(
'%s expects the provided object to implement exchangeArray() or populate()', __METHOD__
'%s expects the provided object to implement exchangeArray() or populate()',
__METHOD__
));
}

Expand Down

0 comments on commit e6feb51

Please sign in to comment.