-
Notifications
You must be signed in to change notification settings - Fork 0
/
Plugin.php
40 lines (35 loc) · 1.11 KB
/
Plugin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
declare(strict_types=1);
/*
* This file is part of the Geocoder package.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @license MIT License
*/
namespace Geocoder\Plugin;
use Geocoder\Query\Query;
use Http\Promise\Promise;
/**
* A plugin is a middleware to transform the Query and/or the Collection.
*
* The plugin can:
* - break the chain and return a Collection
* - dispatch the Query to the next middleware
* - restart the Query
*
* @author Joel Wurtz <joel.wurtz@gmail.com>
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
*/
interface Plugin
{
/**
* Handle the Query and return the Collection coming from the next callable.
*
* @param callable $next Next middleware in the chain, the query is passed as the first argument
* @param callable $first First middleware in the chain, used to to restart a request
*
* @return Promise Resolves a Collection or fails with an Geocoder\Exception\Exception
*/
public function handleQuery(Query $query, callable $next, callable $first);
}