diff -r cd389bf882f1 -r 11fd79666374 Search/Search.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Search/Search.php Fri Nov 04 15:59:49 2011 +0100 @@ -0,0 +1,29 @@ + + * + * 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); + } + + +} \ No newline at end of file