31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-05-29 03:50:46 +00:00

Merge pull request #252 from SharkyKZ/php74/implode

Correct implode() argument order
This commit is contained in:
Roland Dalmulder 2020-03-19 20:37:30 +01:00 committed by GitHub
commit c0a81f6feb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -398,7 +398,7 @@ class PullsModel extends AbstractModel
$this->getDb()->quote($branch),
);
$data[] = implode($pullData, ',');
$data[] = implode(',', $pullData);
}
}