Completed
Push — 15.x ( 66d904...a48227 )
by Tim
01:30
created
src/Configuration/Subject/FileResolver.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -179,7 +179,7 @@
 block discarded – undo
179 179
     /**
180 180
      * Return's the elements the filenames consists of.
181 181
      *
182
-     * @return array The array with the filename elements
182
+     * @return string The array with the filename elements
183 183
      */
184 184
     public function getPatternElements()
185 185
     {
Please login to merge, or discard this patch.
src/Configuration/Plugin.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
     /**
165 165
      * Return's the reference to the configuration instance.
166 166
      *
167
-     * @return \TechDivision\Import\ConfigurationInterface The configuration instance
167
+     * @return string The configuration instance
168 168
      */
169 169
     public function getConfiguration()
170 170
     {
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
     /**
249 249
      * Set's the configuration of the operation the plugin has been configured for.
250 250
      *
251
-     * @param \\TechDivision\Import\Configuration\OperationConfigurationInterface $operationConfiguration The operation configuration
251
+     * @param OperationConfigurationInterface $operationConfiguration The operation configuration
252 252
      *
253 253
      * @return void
254 254
      */
Please login to merge, or discard this patch.
src/Serializer/Serializer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -187,6 +187,9 @@
 block discarded – undo
187 187
         ->get();
188 188
     }
189 189
 
190
+    /**
191
+     * @param string $format
192
+     */
190 193
     private function visit(VisitorInterface $visitor, Context $context, $data, $format, array $type = null)
191 194
     {
192 195
         $context->initialize(
Please login to merge, or discard this patch.
src/Parsers/JsonParser.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      *
59 59
      * @param array $directories An array with diretories to parse
60 60
      *
61
-     * @return void
61
+     * @return string
62 62
      * @throws \Exception Is thrown if the configuration can not be loaded from the configuration files
63 63
      */
64 64
     public function parse(array $directories)
@@ -113,7 +113,6 @@  discard block
 block discarded – undo
113 113
      * List the filenames of a directory.
114 114
      *
115 115
      * @param string  $directory The directory to list
116
-     * @param boolean $recursive Whether to list recursively
117 116
      *
118 117
      * @return array A list of filenames
119 118
      */
Please login to merge, or discard this patch.
src/ConfigurationFactory.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
      * Initializes the instance with the configuration parser factory instance.
56 56
      *
57 57
      * @param \TechDivision\Import\Configuration\Jms\ConfigurationParserFactoryInterface $configurationParserFactory The configuration parser factory instance
58
-     * @param string                                                                     $configurationClass         The configuration class name to use
58
+     * @param string                                                                     $configurationClassName         The configuration class name to use
59 59
      */
60 60
     public function __construct(ConfigurationParserFactoryInterface $configurationParserFactory, $configurationClassName = Configuration::class)
61 61
     {
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
      * @param string $params      A serialized string with additional params that'll be passed to the configuration
129 129
      * @param string $paramsFile  A filename that contains serialized data with additional params that'll be passed to the configuration
130 130
      *
131
-     * @return void
131
+     * @return \TechDivision\Import\ConfigurationInterface
132 132
      */
133 133
     public function factoryFromDirectories(array $directories = array(), $format = 'json', $params = null, $paramsFile = null)
134 134
     {
Please login to merge, or discard this patch.