Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
[zendframework/zendframework#4444] Remove arguments from instantiation
Browse files Browse the repository at this point in the history
- Object being instantiated has no defined constructor in the inheritance tree.
  • Loading branch information
weierophinney committed May 8, 2013
2 parents 149db66 + f3b1c55 commit 121f01a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/Reader/Extension/CreativeCommons/Entry.php
Expand Up @@ -53,9 +53,7 @@ public function getLicenses()

$licenses = array_unique($licenses);
} else {
$cc = new Feed(
$this->domDocument, $this->data['type'], $this->xpath
);
$cc = new Feed();
$licenses = $cc->getLicenses();
}

Expand Down

0 comments on commit 121f01a

Please sign in to comment.