Skip to content

Commit

Permalink
Remove stupid debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Oram committed Jan 13, 2014
1 parent 729e5a2 commit d7546d4
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/SclZfCart/Hydrator/ItemHydrator.php
Expand Up @@ -78,11 +78,9 @@ public function hydrate(array $data, $object)
*/
public function extract($object)
{
echo get_class($object);
if (!$object instanceof CartItemInterface) {
return [];
}
echo "BOOOM!";

$data = [
'title' => $object->getTitle(),
Expand All @@ -101,8 +99,6 @@ public function extract($object)
$data['data'] = $object->getData();
}

echo "EXTRAAAAAAAAAAAAAAAACT\n";
var_dump($data);
return $data;
}

Expand Down

0 comments on commit d7546d4

Please sign in to comment.