Merge pull request #5242 from colemanw/getstat
[civicrm-core.git] / CRM / Utils / FakeObject.php
index c7fa4d7caee2316822c2fcee10f9dae3f01766d4..7052d6867c5a4616a4bcd245f7dd71023cd91041 100644 (file)
@@ -28,8 +28,10 @@ class CRM_Utils_FakeObject {
   public function __call($name, $arguments) {
     if (isset($this->array[$name]) && is_callable($this->array[$name])) {
       return call_user_func_array($this->array[$name], $arguments);
-    } else {
+    }
+    else {
       throw new Exception("Call to unimplemented method: $name");
     }
   }
+
 }