Completed
Push — 6.0 ( eb641c...92cb73 )
by Ruud
148:12 queued 131:31
created
src/Kunstmaan/MenuBundle/Controller/MenuAdminListController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
      *
51 51
      * @param Request $request
52 52
      *
53
-     * @return array
53
+     * @return \Symfony\Component\HttpFoundation\Response
54 54
      */
55 55
     public function indexAction(Request $request)
56 56
     {
Please login to merge, or discard this patch.
src/Kunstmaan/MenuBundle/Controller/MenuItemAdminListController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      *
101 101
      * @Route("/{menuid}/items/add", name="kunstmaanmenubundle_admin_menuitem_add")
102 102
      * @Method({"GET", "POST"})
103
-     * @return array
103
+     * @return Response
104 104
      */
105 105
     public function addAction(Request $request, $menuid)
106 106
     {
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
      * @Route("{menuid}/items/{id}/edit", requirements={"id" = "\d+"}, name="kunstmaanmenubundle_admin_menuitem_edit")
116 116
      * @Method({"GET", "POST"})
117 117
      *
118
-     * @return array
118
+     * @return Response
119 119
      */
120 120
     public function editAction(Request $request, $menuid, $id)
121 121
     {
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
      * @Route("{menuid}/items/{id}/delete", requirements={"id" = "\d+"}, name="kunstmaanmenubundle_admin_menuitem_delete")
131 131
      * @Method({"GET", "POST"})
132 132
      *
133
-     * @return array
133
+     * @return Response
134 134
      */
135 135
     public function deleteAction(Request $request, $menuid, $id)
136 136
     {
Please login to merge, or discard this patch.
src/Kunstmaan/MenuBundle/Service/MenuService.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Doctrine\ORM\EntityManager;
6 6
 use Kunstmaan\AdminBundle\Helper\DomainConfigurationInterface;
7
-use Kunstmaan\MenuBundle\Entity\Menu;
8 7
 
9 8
 class MenuService
10 9
 {
Please login to merge, or discard this patch.
Kunstmaan/MultiDomainBundle/Helper/AdminPanel/SitesAdminPanelAdaptor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 class SitesAdminPanelAdaptor implements AdminPanelAdaptorInterface
10 10
 {
11 11
     /**
12
-     * @return AdminPanelActionInterface[]
12
+     * @return AdminPanelAction[]
13 13
      */
14 14
     public function getAdminPanelActions()
15 15
     {
Please login to merge, or discard this patch.
src/Kunstmaan/NodeBundle/Entity/NodeVersionLock.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 Kunstmaan\NodeBundle\Entity;
4 4
 
5 5
 use Doctrine\ORM\Mapping as ORM;
6
-use Kunstmaan\AdminBundle\Entity\User;
7 6
 
8 7
 /**
9 8
  * NodeVersionLock
Please login to merge, or discard this patch.
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -86,6 +86,7 @@
 block discarded – undo
86 86
      * Set owner
87 87
      *
88 88
      * @param string
89
+     * @param string $owner
89 90
      *
90 91
      * @return NodeVersionLock
91 92
      */
Please login to merge, or discard this patch.
src/Kunstmaan/NodeBundle/Entity/QueuedNodeTranslationAction.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
     /**
110 110
      * Get user
111 111
      *
112
-     * @return string
112
+     * @return BaseUser
113 113
      */
114 114
     public function getUser()
115 115
     {
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     /**
133 133
      * Get date
134 134
      *
135
-     * @return DateTime
135
+     * @return \DateTime
136 136
      */
137 137
     public function getDate()
138 138
     {
Please login to merge, or discard this patch.
src/Kunstmaan/NodeBundle/Event/AdaptFormEvent.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Kunstmaan\NodeBundle\Event;
4 4
 
5 5
 use Kunstmaan\AdminBundle\Helper\FormWidgets\Tabs\TabPane;
6
-
7 6
 use Kunstmaan\NodeBundle\Entity\HasNodeInterface;
8 7
 use Kunstmaan\NodeBundle\Entity\Node;
9 8
 use Kunstmaan\NodeBundle\Entity\NodeTranslation;
Please login to merge, or discard this patch.
src/Kunstmaan/NodeBundle/EventListener/FixDateListener.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     /**
14 14
      * Make sure response has a timestamp
15 15
      *
16
-     * @param FilterResponseEvent|GetResponseEvent $event
16
+     * @param FilterResponseEvent $event
17 17
      */
18 18
     public function onKernelResponse(FilterResponseEvent $event)
19 19
     {
Please login to merge, or discard this patch.
src/Kunstmaan/NodeBundle/EventListener/SlugListener.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 Kunstmaan\NodeBundle\Event\Events;
9 9
 use Kunstmaan\NodeBundle\Event\SlugSecurityEvent;
10 10
 use Symfony\Component\EventDispatcher\EventDispatcherInterface;
11
-use Symfony\Component\HttpKernel\Controller\ControllerResolver;
12 11
 use Symfony\Component\HttpKernel\Controller\ControllerResolverInterface;
13 12
 use Symfony\Component\HttpKernel\Event\FilterControllerEvent;
14 13
 
Please login to merge, or discard this patch.