Completed
Push — 5.0 ( cadd37...918ecf )
by Ruud
100:31 queued 89:28
created
src/Kunstmaan/AdminListBundle/Entity/LockableEntity.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     }
112 112
 
113 113
     /**
114
-     * @param $entityClass
114
+     * @param string $entityClass
115 115
      *
116 116
      * @return LockableEntity
117 117
      */
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
     /**
136 136
      * Set integer
137 137
      *
138
-     * @param $entityId
138
+     * @param integer $entityId
139 139
      *
140 140
      * @return LockableEntity
141 141
      */
Please login to merge, or discard this patch.
src/Kunstmaan/AdminListBundle/Service/EntityVersionLockService.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,6 +26,10 @@  discard block
 block discarded – undo
26 26
      */
27 27
     private $lockEnabled;
28 28
 
29
+    /**
30
+     * @param integer $threshold
31
+     * @param boolean $lockEnabled
32
+     */
29 33
     public function __construct(ObjectManager $em, $threshold, $lockEnabled)
30 34
     {
31 35
         $this->setObjectManager($em);
@@ -138,7 +142,7 @@  discard block
 block discarded – undo
138 142
      *
139 143
      * @param LockableEntity $entity
140 144
      * @param User $userToExclude
141
-     * @return EntityVersionLock[]
145
+     * @return \Kunstmaan\AdminListBundle\Repository\EntityVersionLock[]
142 146
      */
143 147
     protected function getEntityVersionLocksByLockableEntity(LockableEntity $entity, User $userToExclude = null)
144 148
     {
Please login to merge, or discard this patch.
AdminListBundle/Tests/Model/TestLockableEntityInterfaceImplementation.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -11,6 +11,9 @@
 block discarded – undo
11 11
 {
12 12
    protected $id;
13 13
 
14
+   /**
15
+    * @param string $id
16
+    */
14 17
    public function __construct($id)
15 18
    {
16 19
        $this->setId($id);
Please login to merge, or discard this patch.
src/Kunstmaan/ArticleBundle/Entity/AbstractArticleOverviewPage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     }
23 23
 
24 24
     /**
25
-     * @return AbstractPagePartAdminConfigurator[]
25
+     * @return AbstractArticleOverviewPagePagePartAdminConfigurator[]
26 26
      */
27 27
     public function getPagePartAdminConfigurations()
28 28
     {
Please login to merge, or discard this patch.
src/Kunstmaan/ArticleBundle/Entity/AbstractArticlePage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
     }
89 89
 
90 90
     /**
91
-     * @return array
91
+     * @return AbstractArticlePagePagePartAdminConfigurator[]
92 92
      */
93 93
     public function getPagePartAdminConfigurations()
94 94
     {
Please login to merge, or discard this patch.
src/Kunstmaan/ConfigBundle/Controller/ConfigController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
      * @param Request $request
92 92
      * @param string $internalName
93 93
      *
94
-     * @return array|RedirectResponse
94
+     * @return \Symfony\Component\HttpFoundation\Response
95 95
      */
96 96
     public function indexAction(Request $request, $internalName)
97 97
     {
Please login to merge, or discard this patch.
DashboardBundle/Command/Helper/Analytics/AbstractAnalyticsCommandHelper.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,8 +22,8 @@  discard block
 block discarded – undo
22 22
      *
23 23
      * @param $configHelper
24 24
      * @param $queryHelper
25
-     * @param $output
26
-     * @param $em
25
+     * @param OutputInterface $output
26
+     * @param EntityManager $em
27 27
      */
28 28
     public function __construct($configHelper, $queryHelper, $output, $em)
29 29
     {
@@ -75,6 +75,7 @@  discard block
 block discarded – undo
75 75
     /**
76 76
      * Executes the query
77 77
      *
78
+     * @param string $metrics
78 79
      * @return array the resultset
79 80
      */
80 81
     protected function executeQuery(AnalyticsOverview $overview, $metrics) {
Please login to merge, or discard this patch.
src/Kunstmaan/DashboardBundle/Controller/DashboardController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      * @Template()
20 20
      *
21 21
      * @param \Symfony\Component\HttpFoundation\Request $request
22
-     * @return array
22
+     * @return \Symfony\Component\HttpFoundation\Response
23 23
      */
24 24
     public function indexAction(Request $request, $segmentId=null)
25 25
     {
Please login to merge, or discard this patch.
src/Kunstmaan/DashboardBundle/Controller/GoogleAnalyticsController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
      *
87 87
      * @throws AccessDeniedException
88 88
      *
89
-     * @return array
89
+     * @return \Symfony\Component\HttpFoundation\RedirectResponse
90 90
      */
91 91
     public function setTokenAction(Request $request)
92 92
     {
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
      *
116 116
      * @throws AccessDeniedException
117 117
      *
118
-     * @return array
118
+     * @return \Symfony\Component\HttpFoundation\Response
119 119
      */
120 120
     public function configAction(Request $request)
121 121
     {
Please login to merge, or discard this patch.