Search/Search.php
changeset 25 11fd79666374
child 30 d2fba1e3b94b
--- /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 @@
+<?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);
+    }
+    
+        
+}
\ No newline at end of file