| 1 | <?php |
||
| 23 | class LocalePlugin implements Plugin |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * @var string |
||
| 27 | */ |
||
| 28 | private $locale; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param string $locale |
||
| 32 | */ |
||
| 33 | public function __construct(string $locale) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * {@inheritdoc} |
||
| 40 | */ |
||
| 41 | public function handleQuery(Query $query, callable $next, callable $first) |
||
| 49 | } |
||
| 50 |