13 lines
209 B
PHP
Executable File
13 lines
209 B
PHP
Executable File
<?php namespace Illuminate\Contracts\Support;
|
|
|
|
interface MessageProvider {
|
|
|
|
/**
|
|
* Get the messages for the instance.
|
|
*
|
|
* @return \Illuminate\Support\MessageBag
|
|
*/
|
|
public function getMessageBag();
|
|
|
|
}
|