Completed
Push — qa-cumulative-ezp-31278-31279-... ( 4a8f9c )
by
unknown
14:58
created
Configuration/ComplexSettings/ComplexSettingValueResolver.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -39,9 +39,7 @@
 block discarded – undo
39 39
     /**
40 40
      * Can receive as many tuples of array( argumentName ), argumentValue as necessary.
41 41
      *
42
-     * @param $argumentString
43
-     * @param string $dynamicSettingName..
44
-     * @param string $dynamicSettingValue..
42
+     * @param string $argumentString
45 43
      *
46 44
      * @return string
47 45
      */
Please login to merge, or discard this patch.
Bundle/EzPublishCoreBundle/DependencyInjection/Configuration/Parser/IO.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -111,6 +111,7 @@  discard block
 block discarded – undo
111 111
 
112 112
     /**
113 113
      * Applies dependencies of complex $parameter in $scope.
114
+     * @param string $parameter
114 115
      */
115 116
     private function addComplexParametersDependencies($parameter, $scope, ContainerBuilder $container)
116 117
     {
@@ -145,6 +146,9 @@  discard block
 block discarded – undo
145 146
         }
146 147
     }
147 148
 
149
+    /**
150
+     * @param string $setting
151
+     */
148 152
     private function postProcessComplexSetting($setting, $sa, ContainerBuilder $container)
149 153
     {
150 154
         $configResolver = $container->get('ezpublish.config.resolver.core');
Please login to merge, or discard this patch.
eZ/Bundle/EzPublishCoreBundle/Tests/EventListener/ExceptionListenerTest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
     /**
122 122
      * @dataProvider badRequestExceptionProvider
123 123
      *
124
-     * @param Exception|\eZ\Publish\Core\Base\Translatable $exception
124
+     * @param Exception $exception
125 125
      */
126 126
     public function testBadRequestException(Exception $exception)
127 127
     {
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
     /**
159 159
      * @dataProvider otherExceptionProvider
160 160
      *
161
-     * @param Exception|\eZ\Publish\Core\Base\Translatable $exception
161
+     * @param Exception $exception
162 162
      */
163 163
     public function testOtherRepositoryException(Exception $exception)
164 164
     {
Please login to merge, or discard this patch.
EzPublishIOBundle/DependencyInjection/Compiler/IOConfigurationPass.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      * @param ContainerBuilder $container
73 73
      * @param Definition $factory The factory service that should receive the list of handlers
74 74
      * @param array $configuredHandlers Handlers configuration declared via semantic config
75
-     * @param \eZ\Bundle\EzPublishIOBundle\DependencyInjection\ConfigurationFactory[]|ArrayObject $factories Map of alias => handler service id
75
+     * @param ArrayObject $factories Map of alias => handler service id
76 76
      * @param string $defaultHandler default handler id
77 77
      *
78 78
      * @internal param $HandlerTypesMap
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
      * Returns from $factories the factory for handler $type.
106 106
      *
107 107
      * @param ContainerBuilder $container
108
-     * @param \eZ\Bundle\EzPublishIOBundle\DependencyInjection\ConfigurationFactory[]|ArrayObject|ContainerAware[] $factories
108
+     * @param ArrayObject $factories
109 109
      * @param string $type
110 110
      *
111 111
      * @return \eZ\Bundle\EzPublishIOBundle\DependencyInjection\ConfigurationFactory
Please login to merge, or discard this patch.
EzPublishIOBundle/Tests/DependencyInjection/ConfigurationFactoryTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,6 +72,7 @@  discard block
 block discarded – undo
72 72
 
73 73
     /**
74 74
      * Registers the handler in the container, like the pass would have done.
75
+     * @param string $name
75 76
      */
76 77
     private function registerHandler($name)
77 78
     {
@@ -107,7 +108,6 @@  discard block
 block discarded – undo
107 108
      *
108 109
      * The method can also configure the container via $this->container.
109 110
      *
110
-     * @param ContainerBuilder $container
111 111
      */
112 112
     abstract public function provideHandlerConfiguration();
113 113
 
Please login to merge, or discard this patch.
eZ/Publish/Core/MVC/Symfony/SiteAccess/Matcher/Regex.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     /**
72 72
      * Returns matched SiteAccess.
73 73
      *
74
-     * @return string|bool
74
+     * @return string|false
75 75
      */
76 76
     protected function getMatchedSiteAccess()
77 77
     {
Please login to merge, or discard this patch.
eZ/Bundle/EzPublishIOBundle/DependencyInjection/EzPublishIOExtension.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     }
62 62
 
63 63
     /**
64
-     * @return \eZ\Bundle\EzPublishIOBundle\DependencyInjection\ConfigurationFactory[]|\ArrayObject
64
+     * @return ArrayObject
65 65
      */
66 66
     public function getMetadataHandlerFactories()
67 67
     {
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     }
70 70
 
71 71
     /**
72
-     * @return \eZ\Bundle\EzPublishIOBundle\DependencyInjection\ConfigurationFactory[]|\ArrayObject
72
+     * @return ArrayObject
73 73
      */
74 74
     public function getBinarydataHandlerFactories()
75 75
     {
Please login to merge, or discard this patch.
Command/LegacyStorage/RegenerateUrlAliasesCommand.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -893,6 +893,7 @@
 block discarded – undo
893 893
      * Returns total number of Locations in the database.
894 894
      *
895 895
      * The number excludes absolute root Location, which does not have an URL alias.
896
+     * @return integer
896 897
      */
897 898
     protected function getTotalLocationCount()
898 899
     {
Please login to merge, or discard this patch.
Command/LegacyStorage/CleanUpRelationTypeEqZeroCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -109,6 +109,9 @@
 block discarded – undo
109 109
         $conn->exec('DELETE FROM ezcontentobject_link WHERE relation_type = 0');
110 110
     }
111 111
 
112
+    /**
113
+     * @param integer $totalCount
114
+     */
112 115
     protected function executeList(OutputInterface $output, $totalCount)
113 116
     {
114 117
         $table = new Table($output);
Please login to merge, or discard this patch.