forked from EasyCorp/EasyAdminBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfigPassInterface.php
More file actions
32 lines (29 loc) · 864 Bytes
/
ConfigPassInterface.php
File metadata and controls
32 lines (29 loc) · 864 Bytes
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
<?php
/*
* This file is part of the EasyAdminBundle.
*
* (c) Javier Eguiluz <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace JavierEguiluz\Bundle\EasyAdminBundle\Configuration;
/**
* The interface that must be implemented by all the classes that normalize,
* parse, complete or manipulate in any way the original backend configuration
* in order to generate the final backend configuration. This allows the
* end-user to use shortcuts and syntactic sugar to define the backend configuration.
*
* @author Javier Eguiluz <[email protected]>
*
* @internal
*/
interface ConfigPassInterface
{
/**
* @param array $backendConfig
*
* @return array
*/
public function process(array $backendConfig);
}