diff --git a/CHANGELOG.md b/CHANGELOG.md index 6760ef33f..52851519e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ * Added `theme_var` and `body_class` Twig functions that are useful for themes 1. [](#improved) * Updated vendor libraries to latest version + * Removed constructor from ObjectInterface 1. [](#bugfix) * Fixed `BadMethodCallException` thrown in GPM updates [#1784](https://github.com/getgrav/grav/issues/1784) @@ -26,6 +27,8 @@ # v1.3.11 ## mm/dd/2017 +1. [](#improved) + * Updated vendor libraries to latest 1. [](#bugfix) * Fixed issue with _illegal scheme offset_ in `Uri::convertUrl()` [page-inject#8](https://github.com/getgrav/grav-plugin-page-inject/issues/8) diff --git a/system/src/Grav/Framework/Object/Interfaces/ObjectInterface.php b/system/src/Grav/Framework/Object/Interfaces/ObjectInterface.php index c652818f4..f454ad850 100644 --- a/system/src/Grav/Framework/Object/Interfaces/ObjectInterface.php +++ b/system/src/Grav/Framework/Object/Interfaces/ObjectInterface.php @@ -14,12 +14,6 @@ namespace Grav\Framework\Object\Interfaces; */ interface ObjectInterface extends \Serializable, \JsonSerializable { - /** - * @param array $elements - * @param string $key - */ - public function __construct(array $elements = [], $key = null); - /** * @return string */