Completed
Pull Request — dev (#40)
by
unknown
03:30
created
src/AppBundle/Form/User/ResetPasswordType.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 
12 12
 /**
13 13
  * Class UserType.
14
-
15 14
  */
16 15
 class ResetPasswordType extends AbstractType
17 16
 {
Please login to merge, or discard this patch.
src/AppBundle/Controller/Api/FormRequestController.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace AppBundle\Controller\Api;
4 4
 
5 5
 use AppBundle\Entity\FormRequest;
6
-use AppBundle\Entity\FormRequestType;
7 6
 use Mcfedr\JsonFormBundle\Controller\JsonController;
8 7
 use AppBundle\Exception\JsonHttpException;
9 8
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
 
54 54
         $formRequest = new FormRequest();
55 55
         $formRequest
56
-            ->setType(str_replace('-', " ",$type))
56
+            ->setType(str_replace('-', " ", $type))
57 57
             ->setUser($this->getUser());
58 58
 
59 59
         $formRequest = $this->get('serializer')->deserialize(
Please login to merge, or discard this patch.