Completed
Push — ezp30481_turkish_i_breaks_lega... ( f8977c...f9e406 )
by
unknown
17:31
created
eZ/Publish/Core/Search/Common/FieldValueMapper/StringMapper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      *
39 39
      * @param \eZ\Publish\SPI\Search\Field $field
40 40
      *
41
-     * @return mixed
41
+     * @return string
42 42
      */
43 43
     public function map(Field $field)
44 44
     {
Please login to merge, or discard this patch.
Core/MVC/Symfony/Templating/Tests/Twig/Extension/ContentExtensionTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -111,6 +111,9 @@
 block discarded – undo
111 111
         return $content;
112 112
     }
113 113
 
114
+    /**
115
+     * @return \eZ\Publish\Core\MVC\ConfigResolverInterface
116
+     */
114 117
     private function getConfigResolverMock()
115 118
     {
116 119
         $mock = $this->getMock(
Please login to merge, or discard this patch.
eZ/Publish/Core/Persistence/Legacy/Tests/Content/TreeHandlerTest.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -365,7 +365,7 @@  discard block
 block discarded – undo
365 365
     /**
366 366
      * Returns Location Gateway mock.
367 367
      *
368
-     * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\Location\Gateway
368
+     * @return \eZ\Publish\Core\Persistence\Legacy\Content\Location\Gateway
369 369
      */
370 370
     protected function getLocationGatewayMock()
371 371
     {
@@ -386,7 +386,7 @@  discard block
 block discarded – undo
386 386
     /**
387 387
      * Returns a Location Mapper mock.
388 388
      *
389
-     * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\Location\Mapper
389
+     * @return \eZ\Publish\Core\Persistence\Legacy\Content\Location\Mapper
390 390
      */
391 391
     protected function getLocationMapperMock()
392 392
     {
@@ -411,7 +411,7 @@  discard block
 block discarded – undo
411 411
     /**
412 412
      * Returns Content Gateway mock.
413 413
      *
414
-     * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\Gateway
414
+     * @return \eZ\Publish\Core\Persistence\Legacy\Content\Gateway
415 415
      */
416 416
     protected function getContentGatewayMock()
417 417
     {
@@ -432,7 +432,7 @@  discard block
 block discarded – undo
432 432
     /**
433 433
      * Returns a Content Mapper mock.
434 434
      *
435
-     * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\Mapper
435
+     * @return \eZ\Publish\Core\Persistence\Legacy\Content\Mapper
436 436
      */
437 437
     protected function getContentMapperMock()
438 438
     {
@@ -457,7 +457,7 @@  discard block
 block discarded – undo
457 457
     /**
458 458
      * Returns a FieldHandler mock.
459 459
      *
460
-     * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\FieldHandler
460
+     * @return \eZ\Publish\Core\Persistence\Legacy\Content\FieldHandler
461 461
      */
462 462
     protected function getFieldHandlerMock()
463 463
     {
@@ -475,7 +475,7 @@  discard block
 block discarded – undo
475 475
     }
476 476
 
477 477
     /**
478
-     * @param array $methods
478
+     * @param string[] $methods
479 479
      *
480 480
      * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\TreeHandler
481 481
      */
Please login to merge, or discard this patch.
eZ/Bundle/EzPublishCoreBundle/Features/Context/BasicContentContext.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
      *
114 114
      * @param string $path The content path
115 115
      * @param array $fields
116
-     * @param mixed $contentType The content type identifier
116
+     * @param string $contentType The content type identifier
117 117
      *
118 118
      * @return mixed location id of the created content
119 119
      */
@@ -147,6 +147,7 @@  discard block
 block discarded – undo
147 147
 
148 148
     /**
149 149
      * Maps the path of the content to it's name for later use.
150
+     * @param string $path
150 151
      */
151 152
     private function mapContentPath($path)
152 153
     {
Please login to merge, or discard this patch.
eZ/Bundle/EzPublishCoreBundle/Features/Context/FieldTypeContext.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -228,6 +228,7 @@
 block discarded – undo
228 228
      *
229 229
      * @param string The field name
230 230
      * @param mixed The field value
231
+     * @param string|null $field
231 232
      */
232 233
     private function createAndPublishContent($field, $value)
233 234
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/MVC/Symfony/Security/Authorization/Voter/CoreVoter.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      *
45 45
      * @param string $class A class name
46 46
      *
47
-     * @return true if this Voter can process the class
47
+     * @return boolean if this Voter can process the class
48 48
      */
49 49
     public function supportsClass($class)
50 50
     {
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      * ACCESS_GRANTED, ACCESS_DENIED, or ACCESS_ABSTAIN.
59 59
      *
60 60
      * @param TokenInterface $token A TokenInterface instance
61
-     * @param object $object The object to secure
61
+     * @param \stdClass $object The object to secure
62 62
      * @param array $attributes An array of attributes associated with the method being invoked
63 63
      *
64 64
      * @return int either ACCESS_GRANTED, ACCESS_ABSTAIN, or ACCESS_DENIED
Please login to merge, or discard this patch.
Publish/Core/MVC/Symfony/Security/Authorization/Voter/ValueObjectVoter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
      * @see \eZ\Publish\API\Repository\Repository::canUser()
55 55
      *
56 56
      * @param TokenInterface $token      A TokenInterface instance
57
-     * @param object         $object     The object to secure
57
+     * @param \stdClass         $object     The object to secure
58 58
      * @param array          $attributes An array of attributes associated with the method being invoked
59 59
      *
60 60
      * @return int either ACCESS_GRANTED, ACCESS_ABSTAIN, or ACCESS_DENIED
Please login to merge, or discard this patch.
eZ/Publish/Core/Repository/Tests/Service/Mock/PermissionTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -628,7 +628,7 @@
 block discarded – undo
628 628
      * Returns Role stub.
629 629
      *
630 630
      * @param array $policiesData
631
-     * @param mixed $roleId
631
+     * @param integer $roleId
632 632
      *
633 633
      * @return \eZ\Publish\SPI\Persistence\User\Role
634 634
      */
Please login to merge, or discard this patch.
eZ/Publish/Core/Repository/URLWildcardService.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
      *
163 163
      * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException if the url wild card was not found
164 164
      *
165
-     * @param mixed $id
165
+     * @param string $id
166 166
      *
167 167
      * @return \eZ\Publish\API\Repository\Values\Content\UrlWildcard
168 168
      */
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
      * the values from the given <b>$values</b> array.
271 271
      *
272 272
      * @param string $destinationUrl
273
-     * @param array $values
273
+     * @param string[] $values
274 274
      *
275 275
      * @return string
276 276
      */
Please login to merge, or discard this patch.