|
25
|
1 |
<?php |
|
|
2 |
/* |
|
|
3 |
* This file is part of the WikiTagBundle package. |
|
|
4 |
* |
|
|
5 |
* (c) IRI <http://www.iri.centrepompidou.fr/> |
|
|
6 |
* |
|
|
7 |
* For the full copyright and license information, please view the LICENSE |
|
|
8 |
* file that was distributed with this source code. |
|
|
9 |
*/ |
|
|
10 |
namespace IRI\Bundle\WikiTagBundle\Search; |
|
|
11 |
|
|
|
12 |
use Symfony\Component\DependencyInjection\ContainerAware; |
|
|
13 |
use Symfony\Component\DependencyInjection\ContainerInterface; |
|
|
14 |
|
|
|
15 |
class Search extends ContainerAware |
|
|
16 |
{ |
|
|
17 |
|
|
|
18 |
public function getContainer() |
|
|
19 |
{ |
|
|
20 |
return $this->container; |
|
|
21 |
} |
|
|
22 |
|
|
|
23 |
public function __construct(ContainerInterface $container) |
|
|
24 |
{ |
|
|
25 |
$this->setContainer($container); |
|
|
26 |
} |
|
|
27 |
|
|
|
28 |
|
|
|
29 |
} |