Completed
Push — master ( 1af7e7...796d56 )
by Jeroen
16s
created
Kunstmaan/AdminBundle/Tests/unit/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/unit/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.
Tests/unit/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.
AdminList/Configurator/AbstractDoctrineDBALAdminListConfiguratorTest.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 class DBAL extends AbstractDoctrineDBALAdminListConfigurator implements SortableInterface
22 22
 {
23 23
     /**
24
-     * @return mixed
24
+     * @return string
25 25
      */
26 26
     public function getBundleName()
27 27
     {
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     }
30 30
 
31 31
     /**
32
-     * @return mixed
32
+     * @return string
33 33
      */
34 34
     public function getEntityName()
35 35
     {
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     }
38 38
 
39 39
     /**
40
-     * @return mixed
40
+     * @return boolean
41 41
      */
42 42
     public function buildFields()
43 43
     {
Please login to merge, or discard this patch.
AdminList/Configurator/AbstractDoctrineORMAdminListConfiguratorTest.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 class ORM extends AbstractDoctrineORMAdminListConfigurator implements SortableInterface
27 27
 {
28 28
     /**
29
-     * @return mixed
29
+     * @return string
30 30
      */
31 31
     public function getBundleName()
32 32
     {
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     }
35 35
 
36 36
     /**
37
-     * @return mixed
37
+     * @return string
38 38
      */
39 39
     public function getEntityName()
40 40
     {
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
     }
43 43
 
44 44
     /**
45
-     * @return mixed
45
+     * @return boolean
46 46
      */
47 47
     public function buildFields()
48 48
     {
Please login to merge, or discard this patch.
Tests/unit/DependencyInjection/KunstmaanAdminListExtensionTest.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 KunstmaanAdminListExtensionTest extends AbstractPrependableExtensionTestCase
13 13
 {
14 14
     /**
15
-     * @return ExtensionInterface[]
15
+     * @return KunstmaanAdminListExtension[]
16 16
      */
17 17
     protected function getContainerExtensions()
18 18
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminListBundle/Tests/unit/Model/ConcreteConfigurator.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     }
25 25
 
26 26
     /**
27
-     * @return mixed
27
+     * @return boolean
28 28
      */
29 29
     public function buildFields()
30 30
     {
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
     }
79 79
 
80 80
     /**
81
-     * @return Pagerfanta
81
+     * @return string
82 82
      */
83 83
     public function getPagerfanta()
84 84
     {
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     }
87 87
 
88 88
     /**
89
-     * @return mixed
89
+     * @return ArrayIterator
90 90
      */
91 91
     public function getIterator()
92 92
     {
Please login to merge, or discard this patch.
Tests/unit/AdminList/AbstractArticlePageAdminListConfiguratorTest.php 1 patch
Doc Comments   +6 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,6 +19,11 @@  discard block
 block discarded – undo
19 19
     /** @var EntityRepository */
20 20
     private $repo;
21 21
 
22
+    /**
23
+     * @param string $locale
24
+     * @param string $permission
25
+     * @param \PHPUnit_Framework_MockObject_MockObject $repo
26
+     */
22 27
     public function __construct(EntityManager $em, AclHelper $aclHelper, $locale, $permission, $repo)
23 28
     {
24 29
         parent::__construct($em, $aclHelper, $locale, $permission);
@@ -26,7 +31,7 @@  discard block
 block discarded – undo
26 31
     }
27 32
 
28 33
     /**
29
-     * @return bool
34
+     * @return EntityRepository
30 35
      */
31 36
     public function getOverviewPageRepository()
32 37
     {
Please login to merge, or discard this patch.
Tests/unit/DependencyInjection/KunstmaanArticleExtensionTest.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 KunstmaanArticleExtensionTest extends AbstractPrependableExtensionTestCase
13 13
 {
14 14
     /**
15
-     * @return ExtensionInterface[]
15
+     * @return KunstmaanArticleExtension[]
16 16
      */
17 17
     protected function getContainerExtensions()
18 18
     {
Please login to merge, or discard this patch.