Mercurial > hg > isophonics-drupal-site
comparison vendor/zendframework/zend-feed/src/Reader/ExtensionManager.php @ 12:7a779792577d
Update Drupal core to v8.4.5 (via Composer)
author | Chris Cannam |
---|---|
date | Fri, 23 Feb 2018 15:52:07 +0000 |
parents | 4c8ae668cc8c |
children |
comparison
equal
deleted
inserted
replaced
11:bfffd8d7479a | 12:7a779792577d |
---|---|
44 * @return mixed | 44 * @return mixed |
45 * @throws Exception\BadMethodCallException | 45 * @throws Exception\BadMethodCallException |
46 */ | 46 */ |
47 public function __call($method, $args) | 47 public function __call($method, $args) |
48 { | 48 { |
49 if (!method_exists($this->pluginManager, $method)) { | 49 if (! method_exists($this->pluginManager, $method)) { |
50 throw new Exception\BadMethodCallException(sprintf( | 50 throw new Exception\BadMethodCallException(sprintf( |
51 'Method by name of %s does not exist in %s', | 51 'Method by name of %s does not exist in %s', |
52 $method, | 52 $method, |
53 __CLASS__ | 53 __CLASS__ |
54 )); | 54 )); |