website/vendor/alexgarrett/violin/src/Contracts/MessageBagContract.php

13 lines
219 B
PHP
Executable File

<?php
namespace Violin\Contracts;
interface MessageBagContract
{
public function has($key);
public function first($key);
public function get($key);
public function all();
public function keys();
}