Files
app
assets
public
vendor
alexgarrett
composer
danielstjules
doctrine
hassankhan
illuminate
container
contracts
Auth
Bus
Cache
Config
Console
Container
Cookie
Database
Debug
Encryption
Events
Filesystem
Foundation
Hashing
Http
Logging
Mail
Pagination
Pipeline
Queue
Redis
Routing
Support
Arrayable.php
Jsonable.php
MessageBag.php
MessageProvider.php
Renderable.php
Validation
View
composer.json
database
support
nesbot
slim
symfony
twig
autoload.php
.gitignore
README.md
composer.json
composer.lock
composer.phar
mode.php
website/vendor/illuminate/contracts/Support/MessageProvider.php

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();
}