mirror of
https://github.com/itflow-org/itflow
synced 2026-08-24 00:15:12 +00:00
Reintroduce Webklex IMAP for ticket processing as PHP-IMAP is no longer being developed. This is optional for now and considered beta can be found in cron/ticket_email_parser.php
This commit is contained in:
23
plugins/vendor/illuminate/contracts/Routing/BindingRegistrar.php
vendored
Normal file
23
plugins/vendor/illuminate/contracts/Routing/BindingRegistrar.php
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace Illuminate\Contracts\Routing;
|
||||
|
||||
interface BindingRegistrar
|
||||
{
|
||||
/**
|
||||
* Add a new route parameter binder.
|
||||
*
|
||||
* @param string $key
|
||||
* @param string|callable $binder
|
||||
* @return void
|
||||
*/
|
||||
public function bind($key, $binder);
|
||||
|
||||
/**
|
||||
* Get the binding callback for a given binding.
|
||||
*
|
||||
* @param string $key
|
||||
* @return \Closure
|
||||
*/
|
||||
public function getBindingCallback($key);
|
||||
}
|
||||
Reference in New Issue
Block a user