mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-10 19:43:16 +00:00
14 lines
284 B
PHP
14 lines
284 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\SearchEngine;
|
|
|
|
use Silex\Application;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
|
|
interface ConfigurationPanelInterface
|
|
{
|
|
public function get(Application $app, Request $request);
|
|
|
|
public function post(Application $app, Request $request);
|
|
}
|