mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 22:50:07 +01:00
13 lines
236 B
PHP
Executable file
13 lines
236 B
PHP
Executable file
<?php
|
|
|
|
namespace Illuminate\Contracts\Support;
|
|
|
|
interface MessageProvider
|
|
{
|
|
/**
|
|
* Get the messages for the instance.
|
|
*
|
|
* @return \Illuminate\Contracts\Support\MessageBag
|
|
*/
|
|
public function getMessageBag();
|
|
}
|