DateTimePlus::__callStatic

public static DateTimePlus::__callStatic($method, $args)

Implements the magic __callStatic method.

Passes through all unknown static calls onto the DateTime object.

File

core/lib/Drupal/Component/Datetime/DateTimePlus.php, line 344

Class

DateTimePlus
Wraps DateTime().

Namespace

Drupal\Component\Datetime

Code

public static function __callStatic($method, $args) {
  if (!method_exists('\DateTime', $method)) {
    throw new \BadMethodCallException(sprintf('Call to undefined method %s::%s()', get_called_class(), $method));
  }
  return call_user_func_array(array('\DateTime', $method), $args);
}
doc_Drupal
2016-10-29 09:01:04
Comments
Leave a Comment

Please login to continue.