Completed
Push — 6.0 ( b300c2...83be5d )
by Ruud
58:05 queued 42:53
created
src/Kunstmaan/AdminBundle/Tests/AbstractPrependableExtensionTestCase.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
      * Call this method from within your test after you have (optionally) modified the ContainerBuilder for this test
12 12
      * ($this->container).
13 13
      *
14
-     * @param array $specificConfiguration
15 14
      */
16 15
     protected function load(array $configurationValues = array())
17 16
     {
Please login to merge, or discard this patch.
AdminBundle/Tests/DependencyInjection/KunstmaanAdminExtensionTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 class KunstmaanAdminExtensionTest extends AbstractPrependableExtensionTestCase
13 13
 {
14 14
     /**
15
-     * @return ExtensionInterface[]
15
+     * @return KunstmaanAdminExtension[]
16 16
      */
17 17
     protected function getContainerExtensions()
18 18
     {
Please login to merge, or discard this patch.
AdminBundle/Tests/Helper/Security/Acl/Permission/PermissionAdminTest.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
     /**
159 159
      * Return alc provider mock
160 160
      *
161
-     * @return AclProviderInterface
161
+     * @return \PHPUnit_Framework_MockObject_MockObject
162 162
      */
163 163
     public function getAclProvider()
164 164
     {
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
     /**
169 169
      * Return security token storage
170 170
      *
171
-     * @return TokenStorageInterface
171
+     * @return \PHPUnit_Framework_MockObject_MockObject
172 172
      */
173 173
     public function getTokenStorage()
174 174
     {
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
     /**
179 179
      * Return oid retrieval strategy mock
180 180
      *
181
-     * @return ObjectIdentityRetrievalStrategyInterface
181
+     * @return \PHPUnit_Framework_MockObject_MockObject
182 182
      */
183 183
     public function getOidRetrievalStrategy()
184 184
     {
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
     /**
189 189
      * Return event dispatcher mock
190 190
      *
191
-     * @return EventDispatcherInterface
191
+     * @return \PHPUnit_Framework_MockObject_MockObject
192 192
      */
193 193
     public function getEventDispatcher()
194 194
     {
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
     }
205 205
 
206 206
     /**
207
-     * @return KernelInterface
207
+     * @return \PHPUnit_Framework_MockObject_MockObject
208 208
      */
209 209
     public function getKernel()
210 210
     {
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
     /**
267 267
      * Return entity mock
268 268
      *
269
-     * @return AbstractEntity
269
+     * @return \PHPUnit_Framework_MockObject_MockObject
270 270
      */
271 271
     public function getEntity()
272 272
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Twig/MultiDomainAdminTwigExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     /**
24 24
      * Get Twig functions defined in this extension.
25 25
      *
26
-     * @return array
26
+     * @return Twig_SimpleFunction[]
27 27
      */
28 28
     public function getFunctions()
29 29
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminListBundle/AdminList/AdminList.php 1 patch
Doc Comments   +15 added lines, -7 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
     }
117 117
 
118 118
     /**
119
-     * @param mixed $item
119
+     * @param \Kunstmaan\MenuBundle\Entity\MenuItem $item
120 120
      *
121 121
      * @return bool
122 122
      */
@@ -133,6 +133,11 @@  discard block
 block discarded – undo
133 133
         return $this->configurator->canAdd();
134 134
     }
135 135
 
136
+    /**
137
+     * @param \Kunstmaan\MenuBundle\Entity\MenuItem $item
138
+     *
139
+     * @return boolean
140
+     */
136 141
     public function canView($item)
137 142
     {
138 143
         return $this->configurator->canView($item);
@@ -147,7 +152,7 @@  discard block
 block discarded – undo
147 152
     }
148 153
 
149 154
     /**
150
-     * @param mixed $item
155
+     * @param \Kunstmaan\MenuBundle\Entity\MenuItem $item
151 156
      *
152 157
      * @return array
153 158
      */
@@ -156,13 +161,16 @@  discard block
 block discarded – undo
156 161
         return $this->configurator->getEditUrlFor($item);
157 162
     }
158 163
 
164
+    /**
165
+     * @param \Kunstmaan\MenuBundle\Entity\MenuItem $item
166
+     */
159 167
     public function getViewUrlFor($item)
160 168
     {
161 169
         return $this->configurator->getViewUrlFor($item);
162 170
     }
163 171
 
164 172
     /**
165
-     * @param mixed $item
173
+     * @param \Kunstmaan\MenuBundle\Entity\MenuItem $item
166 174
      *
167 175
      * @return array
168 176
      */
@@ -182,7 +190,7 @@  discard block
 block discarded – undo
182 190
     }
183 191
 
184 192
     /**
185
-     * @param mixed $item
193
+     * @param \Kunstmaan\MenuBundle\Entity\MenuItem $item
186 194
      *
187 195
      * @return bool
188 196
      */
@@ -246,7 +254,7 @@  discard block
 block discarded – undo
246 254
     }
247 255
 
248 256
     /**
249
-     * @return array
257
+     * @return ItemAction\ItemActionInterface[]
250 258
      */
251 259
     public function getItemActions()
252 260
     {
@@ -270,7 +278,7 @@  discard block
 block discarded – undo
270 278
     }
271 279
 
272 280
     /**
273
-     * @return array
281
+     * @return ListAction\ListActionInterface[]
274 282
      */
275 283
     public function getListActions()
276 284
     {
@@ -278,7 +286,7 @@  discard block
 block discarded – undo
278 286
     }
279 287
 
280 288
     /**
281
-     * @return array
289
+     * @return BulkAction\BulkActionInterface[]
282 290
      */
283 291
     public function getBulkActions()
284 292
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminListBundle/AdminList/BulkAction/SimpleBulkAction.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     private $template;
30 30
 
31 31
     /**
32
-     * @param array    $url      The url path and parameters
32
+     * @param string[]    $url      The url path and parameters
33 33
      * @param string   $label    The label
34 34
      * @param string   $icon     The icon
35 35
      * @param string   $template The template
Please login to merge, or discard this patch.
AdminList/Configurator/AbstractDoctrineORMAdminListConfigurator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     /**
60 60
      * Return the url to edit the given $item
61 61
      *
62
-     * @param object $item
62
+     * @param \Kunstmaan\LeadGenerationBundle\Tests\Entity\Popup\Popup $item
63 63
      *
64 64
      * @return array
65 65
      */
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     /**
78 78
      * Get the delete url for the given $item
79 79
      *
80
-     * @param object $item
80
+     * @param \Kunstmaan\LeadGenerationBundle\Tests\Entity\Popup\Popup $item
81 81
      *
82 82
      * @return array
83 83
      */
Please login to merge, or discard this patch.
src/Kunstmaan/AdminListBundle/AdminList/Field.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -103,6 +103,9 @@  discard block
 block discarded – undo
103 103
         return true;
104 104
     }
105 105
 
106
+    /**
107
+     * @param \stdClass $item
108
+     */
106 109
     public function getAliasObj($item)
107 110
     {
108 111
         $relation = $this->alias->getRelation();
@@ -115,6 +118,9 @@  discard block
 block discarded – undo
115 118
         return $item;
116 119
     }
117 120
 
121
+    /**
122
+     * @param string $column
123
+     */
118 124
     public function getColumnName($column)
119 125
     {
120 126
         $abbr = $this->alias->getAbbr().'.';
Please login to merge, or discard this patch.
src/Kunstmaan/AdminListBundle/AdminList/FieldAlias.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@
 block discarded – undo
9 9
 {
10 10
     /**
11 11
      * FieldAlias constructor.
12
-     * @param $abbr string
13
-     * @param $relation string
12
+     * @param string $abbr string
13
+     * @param string $relation string
14 14
      */
15 15
     public function __construct($abbr, $relation)
16 16
     {
Please login to merge, or discard this patch.