Completed
Push — master ( 00f7eb...ef40a9 )
by
13:02 queued 10:01
created
Controller/SyliusUserController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 class SyliusUserController extends UserController
11 11
 {
12 12
     /**
13
-     * @param $response
13
+     * @param \Symfony\Component\HttpFoundation\Response|null $response
14 14
      *
15 15
      * @return RedirectResponse
16 16
      */
Please login to merge, or discard this patch.
Doctrine/ORM/UserRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -226,12 +226,12 @@
 block discarded – undo
226 226
         if (count($paths) > 1) {
227 227
             $queryBuilder
228 228
                 ->join($this->getPropertyName($paths[0]), '_p1')
229
-                ->where('_p1.' . $paths[1] . ' = :value')
229
+                ->where('_p1.'.$paths[1].' = :value')
230 230
                 ->setParameter('value', $value)
231 231
             ;
232 232
         } else {
233 233
             $queryBuilder
234
-                ->where($this->getPropertyName($propertyPath) . ' = :value')
234
+                ->where($this->getPropertyName($propertyPath).' = :value')
235 235
                 ->setParameter('value', $value)
236 236
             ;
237 237
         }
Please login to merge, or discard this patch.
Model/User.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -225,7 +225,7 @@
 block discarded – undo
225 225
      */
226 226
     public function setEnabled($boolean)
227 227
     {
228
-        $this->enabled = (Boolean)$boolean;
228
+        $this->enabled = (Boolean) $boolean;
229 229
 
230 230
         if (!$this->isConfirmed()) {
231 231
             $this->enabled = false;
Please login to merge, or discard this patch.
OAuth/ResourceResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     {
72 72
         $gender = CustomerInterface::UNKNOWN_GENDER;
73 73
 
74
-        switch($this->getPathValue('gender')) {
74
+        switch ($this->getPathValue('gender')) {
75 75
             case 'male':
76 76
                 $gender = CustomerInterface::MALE_GENDER;
77 77
                 break;
Please login to merge, or discard this patch.