Pull merge.
[yaffs-website] / web / core / modules / migrate / src / Plugin / migrate / source / DummyQueryTrait.php
index b77f95e2736712d9f72fb48cd0afe6677612d619..51a456a017a765a528b3438ca4014534f50c5c1e 100644 (file)
@@ -16,7 +16,7 @@ trait DummyQueryTrait {
    * {@inheritdoc}
    */
   public function query() {
-    // Pass an arbritrary table name - the query should never be executed
+    // Pass an arbitrary table name - the query should never be executed
     // anyway.
     $query = $this->select(uniqid(), 's')
       ->range(0, 1);
@@ -27,7 +27,7 @@ trait DummyQueryTrait {
   /**
    * {@inheritdoc}
    */
-  public function count() {
+  public function count($refresh = FALSE) {
     return 1;
   }