Completed
Push — master ( 884678...82e5a1 )
by Tim
26s
created
src/Services/ImportProcessor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -486,7 +486,7 @@
 block discarded – undo
486 486
     /**
487 487
      * Return's the repository to access link attributes.
488 488
      *
489
-     * @return \TechDivision\Import\Repositories\LinkTypeRepository The repository instance
489
+     * @return LinkAttributeRepository The repository instance
490 490
      */
491 491
     public function getLinkAttributeRepository()
492 492
     {
Please login to merge, or discard this patch.
src/Callbacks/AbstractMultiselectCallback.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
      * @param string $attributeCode  The code of the attribute the passed value is for
44 44
      * @param mixed  $attributeValue The value to handle
45 45
      *
46
-     * @return mixed|null The modified value
46
+     * @return null|string The modified value
47 47
      * @see \TechDivision\Import\Callbacks\CallbackInterface::handle()
48 48
      */
49 49
     public function handle($attributeCode, $attributeValue)
Please login to merge, or discard this patch.
src/Subjects/AbstractSubject.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
      * @param mixed|null    $default  The default value, that has to be returned, if the row's value is empty
377 377
      * @param callable|null $callback The callback that has to be invoked on the value, e. g. to format it
378 378
      *
379
-     * @return mixed|null The, almost formatted, value
379
+     * @return string The, almost formatted, value
380 380
      */
381 381
     public function getValue($name, $default = null, callable $callback = null)
382 382
     {
@@ -1274,7 +1274,7 @@  discard block
 block discarded – undo
1274 1274
      *
1275 1275
      * @param string $message The message to strip the exception suffix from
1276 1276
      *
1277
-     * @return mixed The message without the exception suffix
1277
+     * @return string The message without the exception suffix
1278 1278
      */
1279 1279
     public function stripExceptionSuffix($message)
1280 1280
     {
Please login to merge, or discard this patch.
src/Plugins/SubjectPlugin.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -269,7 +269,7 @@
 block discarded – undo
269 269
      *
270 270
      * @param \TechDivision\Import\Configuration\SubjectConfigurationInterface $subjectConfiguration The subject configuration
271 271
      *
272
-     * @return object The handler instance
272
+     * @return \TechDivision\Import\Subjects\SubjectInterface The handler instance
273 273
      */
274 274
     protected function subjectFactory(SubjectConfigurationInterface $subjectConfiguration)
275 275
     {
Please login to merge, or discard this patch.