Completed
Push — master ( 5d51b4...87fdd9 )
by Paul
10s
created
Bundle/QueryBundle/Helper/QueryHelper.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 use Doctrine\ORM\Mapping\ManyToOne;
9 9
 use Doctrine\ORM\Mapping\OneToMany;
10 10
 use Doctrine\ORM\Mapping\OneToOne;
11
-use Doctrine\ORM\Query\Expr\Join;
12 11
 use Doctrine\ORM\QueryBuilder;
13 12
 use FOS\UserBundle\Model\UserInterface;
14 13
 use Knp\DoctrineBehaviors\Model\Translatable\Translatable;
Please login to merge, or discard this patch.
Bundle/CoreBundle/Repository/ViewRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
             $pageId = $page->getId();
125 125
             $viewReference = array_filter(
126 126
                 $viewReferences,
127
-                function ($e) use ($pageId) {
127
+                function($e) use ($pageId) {
128 128
                     return $e->getViewId() == $pageId;
129 129
             });
130 130
             if (!empty($viewReference[0])) {
Please login to merge, or discard this patch.
Bundle/WidgetBundle/Twig/LinkExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -264,7 +264,7 @@
 block discarded – undo
264 264
 
265 265
     private function formatAttributes($attributes)
266 266
     {
267
-        array_walk($attributes, function (&$item, $key) {
267
+        array_walk($attributes, function(&$item, $key) {
268 268
             if (is_array($item)) {
269 269
                 $item = implode($item, ' ');
270 270
             }
Please login to merge, or discard this patch.