diff --git a/src/Illuminate/Contracts/Support/MessageBag.php b/src/Illuminate/Contracts/Support/MessageBag.php index 2d71bed2f778..296cae78c57d 100644 --- a/src/Illuminate/Contracts/Support/MessageBag.php +++ b/src/Illuminate/Contracts/Support/MessageBag.php @@ -2,7 +2,7 @@ namespace Illuminate\Contracts\Support; -interface MessageBag +interface MessageBag extends Arrayable { /** * Get the keys present in the message bag. @@ -90,11 +90,4 @@ public function isEmpty(); * @return int */ public function count(); - - /** - * Get the instance as an array. - * - * @return array - */ - public function toArray(); }