[SearchEngine] Add unit tests

This commit is contained in:
Romain Neutron
2012-08-28 11:42:30 +02:00
parent afdeb22673
commit b284cb2661
5 changed files with 125 additions and 42 deletions

View File

@@ -0,0 +1,14 @@
<?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);
}