Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Oara/Network/Publisher/AutoEurope.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public function getTransactionList($merchantList = null, \DateTime $dStartDate =
public function readTransactions($htmlReport)
{
$pdfContent = '';
$dom = new \Zend\Dom\Query($htmlReport);
$dom = new \Laminas\Dom\Query($htmlReport);
$links = $dom->execute('.text a');
$pdfUrl = null;
foreach ($links as $link) {
Expand Down
4 changes: 2 additions & 2 deletions Oara/Network/Publisher/Smg.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function login($credentials)
$urls = array();
$urls[] = new \Oara\Curl\Request('https://app.impact.com/secure/mediapartner/accountSettings/mp-wsapi-flow.ihtml?', array());
$exportReport = $this->_client->get($urls);
$dom = new \Zend\Dom\Query($exportReport[0]);
$dom = new \Laminas\Dom\Query($exportReport[0]);
$results = $dom->execute('div .uitkFields');
$count = \count($results);
if ($count == 0) {
Expand All @@ -76,7 +76,7 @@ public function login($credentials)
$urls = array();
$urls[] = new \Oara\Curl\Request('https://app.impact.com/secure/mediapartner/accountSettings/mp-wsapi-flow.ihtml?', array());
$exportReport = $this->_client->get($urls);
$dom = new \Zend\Dom\Query($exportReport[0]);
$dom = new \Laminas\Dom\Query($exportReport[0]);
$results = $dom->execute('div .uitkFields');
$count = \count($results); // get number of matches: 4
if ($count == 0) {
Expand Down
Loading