Search/Search.php
author ymh <ymh.work@gmail.com>
Fri, 04 Nov 2011 15:59:49 +0100
changeset 25 11fd79666374
child 30 d2fba1e3b94b
permissions -rw-r--r--
add missing files

<?php
/*
 * This file is part of the WikiTagBundle package.
 *
 * (c) IRI <http://www.iri.centrepompidou.fr/>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace IRI\Bundle\WikiTagBundle\Search;
 
use Symfony\Component\DependencyInjection\ContainerAware;
use Symfony\Component\DependencyInjection\ContainerInterface;

class Search extends ContainerAware
{
    
    public function getContainer()
    {
        return $this->container;
    }
    
    public function __construct(ContainerInterface $container)
    {
        $this->setContainer($container);
    }
    
        
}