blob: f15ce730d478d780c0ee8794ab1fd2ecf3aa2dc2 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Illuminate\Contracts\Support;
4
5interface MessageProvider
6{
7 /**
8 * Get the messages for the instance.
9 *
10 * @return \Illuminate\Contracts\Support\MessageBag
11 */
12 public function getMessageBag();
13}