FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Geocoder/src/Plugin/Plugin.php at master · geocoder-php/Geocoder · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
geocoder-php
/
Geocoder
Public
Notifications
You must be signed in to change notification settings
Fork
524
Star
4k
Code
Issues
49
Pull requests
14
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
Geocoder
/
src
/
Plugin
/
Plugin.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
40 lines (35 loc) · 1.11 KB
Breadcrumbs
Geocoder
/
src
/
Plugin
/
Plugin.php
Copy path
File metadata and controls
40 lines (35 loc) · 1.11 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
);
}
Back
|
FazBrowse Home
|
New Git URL