Completed
Push — EZEE-3159 ( 7e7924...764f7d )
by
unknown
29:59 queued 10:46
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.
EzPublishCoreBundle/Imagine/VariationPurger/ImageFileVariationPurger.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     /**
43 43
      * Purge all variations generated for aliases in $aliasName.
44 44
      *
45
-     * @param array $aliasNames
45
+     * @param string[] $aliasNames
46 46
      */
47 47
     public function purge(array $aliasNames)
48 48
     {
Please login to merge, or discard this patch.
Tests/DependencyInjection/Configuration/Parser/FieldType/RichTextTest.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
      * Return an array of container extensions you need to be registered for each test (usually just the container
23 23
      * extension you are testing.
24 24
      *
25
-     * @return ExtensionInterface[]
25
+     * @return EzPublishCoreExtension[]
26 26
      */
27 27
     protected function getContainerExtensions()
28 28
     {
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.
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/Bundle/EzPublishCoreBundle/EventListener/ConfigScopeListener.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
     /**
67 67
      * Sets the complete list of view providers.
68 68
      *
69
-     * @param array $viewProviders
69
+     * @param \PHPUnit\Framework\MockObject\MockObject $viewProviders
70 70
      */
71 71
     public function setViewProviders(array $viewProviders)
72 72
     {
Please login to merge, or discard this patch.
Tests/EventListener/BackgroundIndexingTerminateListenerTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
     /**
87 87
      * @dataProvider indexingProvider
88 88
      *
89
-     * @param array|null $value
89
+     * @param array|null $values
90 90
      * @param \Psr\Log\LoggerInterface|\PHPUnit\Framework\MockObject\MockObject|null $logger
91 91
      */
92 92
     public function testIndexing(array $values = null, $logger = null)
Please login to merge, or discard this patch.