mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-11 12:03:14 +00:00
15 lines
285 B
PHP
15 lines
285 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);
|
|
}
|