From adad4833e881a6b286bc9d47ba464beb8d11511e Mon Sep 17 00:00:00 2001 From: Joby Elliott Date: Fri, 24 Aug 2018 02:16:12 +0000 Subject: [PATCH] remove constructor from interface This allows more flexible use downstream --- src/FlatArrayInterface.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/FlatArrayInterface.php b/src/FlatArrayInterface.php index 5425620..de25b11 100644 --- a/src/FlatArrayInterface.php +++ b/src/FlatArrayInterface.php @@ -4,7 +4,6 @@ namespace Flatrr; interface FlatArrayInterface extends \ArrayAccess, \Iterator { - public function __construct(array $data = null); public function set(?string $name, $value); public function get(?string $name = null); public function unset(?string $name);