Added vendor/ directory for Composer's installed files
This commit is contained in:
12
vendor/alexgarrett/violin/src/Contracts/MessageBagContract.php
vendored
Executable file
12
vendor/alexgarrett/violin/src/Contracts/MessageBagContract.php
vendored
Executable file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace Violin\Contracts;
|
||||
|
||||
interface MessageBagContract
|
||||
{
|
||||
public function has($key);
|
||||
public function first($key);
|
||||
public function get($key);
|
||||
public function all();
|
||||
public function keys();
|
||||
}
|
Reference in New Issue
Block a user