|
@@ -137,6 +137,16 @@ class Controller extends ContainerAware
|
|
|
return $this->get('form.factory')->createBuilder('form', $data, $options);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * Shortcut to return the request service.
|
|
|
+ *
|
|
|
+ * @return Symfony\Component\HttpFoundation\Request
|
|
|
+ */
|
|
|
+ public function getRequest()
|
|
|
+ {
|
|
|
+ return $this->get('request');
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* Shortcut to return the Doctrine Registry class
|
|
|
*
|