mirror of
https://github.com/code-rhapsodie/ezmigrationbundle2.git
synced 2026-03-24 06:42:19 +01:00
15 lines
270 B
PHP
15 lines
270 B
PHP
<?php
|
|
|
|
namespace Kaliop\eZMigrationBundle\API;
|
|
|
|
interface ConfigResolverInterface
|
|
{
|
|
/**
|
|
* @param string $paramName
|
|
* @param string $scope
|
|
* @return mixed
|
|
* @throws \Exception
|
|
*/
|
|
public function getParameter($paramName, $scope = null);
|
|
}
|