Completed
Pull Request — master (#89)
by Tim
02:19
created
src/Callbacks/AbstractMultiselectCallback.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
      * @param \TechDivision\Import\Observers\ObserverInterface $observer The observer
44 44
      *
45
-     * @return mixed The modified value
45
+     * @return null|string The modified value
46 46
      */
47 47
     public function handle(AttributeCodeAndValueAwareObserverInterface $observer)
48 48
     {
Please login to merge, or discard this patch.
src/Services/ImportProcessor.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
      * Commits a transaction, returning the database connection to autocommit mode until the next call to
238 238
      * ProductProcessor::beginTransaction() starts a new transaction.
239 239
      *
240
-     * @return boolean Returns TRUE on success or FALSE on failure
240
+     * @return boolean|null Returns TRUE on success or FALSE on failure
241 241
      * @link http://php.net/manual/en/pdo.commit.php
242 242
      */
243 243
     public function commit()
@@ -520,7 +520,7 @@  discard block
 block discarded – undo
520 520
     /**
521 521
      * Return's the repository to access link attributes.
522 522
      *
523
-     * @return \TechDivision\Import\Repositories\LinkTypeRepository The repository instance
523
+     * @return LinkAttributeRepository The repository instance
524 524
      */
525 525
     public function getLinkAttributeRepository()
526 526
     {
Please login to merge, or discard this patch.
src/Adapter/Csv/ExportConfigFactory.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     /**
46 46
      * Initialize the adapter with the configuration.
47 47
      *
48
-     * @param \TechDivision\Import\Configuration\ConfigurationInterface $configuration The configuration instance
48
+     * @param ConfigurationInterface $configuration The configuration instance
49 49
      */
50 50
     public function __construct(ConfigurationInterface $configuration)
51 51
     {
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     /**
56 56
      * Factory method to create a new export configuration instance.
57 57
      *
58
-     * @return \Goodby\CSV\Export\Standard\ExportConfig The export configuration
58
+     * @return ExporterConfig The export configuration
59 59
      */
60 60
     public function createExportConfig()
61 61
     {
Please login to merge, or discard this patch.
src/Adapter/Csv/LexerConfigFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     /**
46 46
      * Initialize the adapter with the configuration.
47 47
      *
48
-     * @param \TechDivision\Import\Configuration\ConfigurationInterface $configuration The configuration instance
48
+     * @param ConfigurationInterface $configuration The configuration instance
49 49
      */
50 50
     public function __construct(ConfigurationInterface $configuration)
51 51
     {
Please login to merge, or discard this patch.
src/Callbacks/AbstractCallback.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
      * Set's the callback's observer instance.
46 46
      *
47
-     * @param \TechDivision\Import\Observers\ObserverInterfaceInterface $observer The callback's observer
47
+     * @param ObserverInterface $observer The callback's observer
48 48
      *
49 49
      * @return void
50 50
      */
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     /**
57 57
      * Return's the callback's observer instance.
58 58
      *
59
-     * @return \TechDivision\Import\Observers\ObserverInterfaceInterface The callback's observer
59
+     * @return ObserverInterface The callback's observer
60 60
      */
61 61
     protected function getObserver()
62 62
     {
Please login to merge, or discard this patch.
src/Observers/AbstractObserver.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
     /**
68 68
      * Return's the observer's subject instance.
69 69
      *
70
-     * @return object The observer's subject instance
70
+     * @return SubjectInterface The observer's subject instance
71 71
      */
72 72
     public function getSubject()
73 73
     {
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
@@ -1090,7 +1090,7 @@  discard block
 block discarded – undo
1090 1090
     /**
1091 1091
      * Return's the original data if available, or an empty array.
1092 1092
      *
1093
-     * @return array The original data
1093
+     * @return string The original data
1094 1094
      */
1095 1095
     public function getOriginalData()
1096 1096
     {
@@ -1181,7 +1181,7 @@  discard block
 block discarded – undo
1181 1181
      *
1182 1182
      * @param string $message The message to strip the exception suffix from
1183 1183
      *
1184
-     * @return mixed The message without the exception suffix
1184
+     * @return string The message without the exception suffix
1185 1185
      */
1186 1186
     public function stripExceptionSuffix($message)
1187 1187
     {
Please login to merge, or discard this patch.