Commit f82ace0c authored by Liam Morland's avatar Liam Morland
Browse files

Issue #3038544: Remove non-functional views_php_plugin_wrapper::__callStatic()

parent a6bb3e85
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -64,11 +64,4 @@ class views_php_plugin_wrapper {
    return call_user_func_array(array($this->wrapped, $name), $arguments);
  }

  /**
   * As of PHP 5.3.0.
   */
  public static function __callStatic($name, $arguments) {
    return call_user_func_array(array(get_class($this->wrapped), $name), $arguments);
  }

}