Remove param default
authorEileen McNaughton <emcnaughton@wikimedia.org>
Thu, 20 Jan 2022 22:41:41 +0000 (11:41 +1300)
committerEileen McNaughton <emcnaughton@wikimedia.org>
Thu, 20 Jan 2022 22:41:41 +0000 (11:41 +1300)
Since value is required the default for label would never be used

Civi/Payment/PropertyBag.php

index 24987057ef23e95069a66eb1f8a4c2d5ce9124eb..4e76c5aedf5d186951485e4795ca12e0692c933f 100644 (file)
@@ -315,7 +315,7 @@ class PropertyBag implements \ArrayAccess {
    *
    * @return PropertyBag $this object so you can chain set setters.
    */
-  protected function set($prop, $label = 'default', $value) {
+  protected function set($prop, $label, $value) {
     $this->props[$label][$prop] = $value;
     return $this;
   }