Merge pull request #16198 from seamuslee001/parent_fetchall
authorEileen McNaughton <emcnaughton@wikimedia.org>
Mon, 6 Jan 2020 21:14:36 +0000 (10:14 +1300)
committerGitHub <noreply@github.com>
Mon, 6 Jan 2020 21:14:36 +0000 (10:14 +1300)
[REF] Update fetchAll function signature to match parent function

CRM/Core/DAO.php

index fcb2070c8ebab0fb9157cd0dd1c4d52f419ee33f..70fd10bc8a638277cd960052ab7370c86bc13691 100644 (file)
@@ -1104,7 +1104,7 @@ FROM   civicrm_domain
    *
    * @return array
    */
-  public function fetchAll() {
+  public function fetchAll($k = FALSE, $v = FALSE, $method = FALSE) {
     $result = [];
     while ($this->fetch()) {
       $result[] = $this->toArray();