Removed constructor from ObjectInterface

This commit is contained in:
Matias Griese
2017-12-15 21:31:40 +02:00
parent 34e3be710f
commit fb106b1106
2 changed files with 1 additions and 6 deletions

View File

@@ -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
# v1.4.0-beta.1
## 12/11/2017

View File

@@ -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
*/