mirror of
https://github.com/getgrav/grav.git
synced 2026-07-07 11:11:51 +02:00
Fixed BadMethodException in GPM updates #1784
This commit is contained in:
@@ -6,6 +6,8 @@
|
||||
* Added `theme_var` and `body_class` Twig functions that are useful for themes
|
||||
1. [](#improved)
|
||||
* Updated vendor libraries to latest version
|
||||
1. [](#bugfix)
|
||||
* Fixed `BadMethodCallException` thrown in GPM updates [#1784](https://github.com/getgrav/grav/issues/1784)
|
||||
|
||||
# v1.4.0-beta.1
|
||||
## 12/11/2017
|
||||
|
||||
@@ -35,7 +35,7 @@ class Package {
|
||||
}
|
||||
|
||||
public function __set($key, $value) {
|
||||
throw new \BadMethodCallException('Not Implemented');
|
||||
$this->data->set($key, $value);
|
||||
}
|
||||
|
||||
public function __toString() {
|
||||
|
||||
Reference in New Issue
Block a user