Completed
Push — master ( 813b3f...cebdc0 )
by Tim
12s
created
src/Subjects/AbstractSubject.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -375,7 +375,7 @@  discard block
 block discarded – undo
375 375
      * @param mixed|null    $default  The default value, that has to be returned, if the row's value is empty
376 376
      * @param callable|null $callback The callback that has to be invoked on the value, e. g. to format it
377 377
      *
378
-     * @return mixed|null The, almost formatted, value
378
+     * @return string The, almost formatted, value
379 379
      */
380 380
     public function getValue($name, $default = null, callable $callback = null)
381 381
     {
@@ -1194,7 +1194,7 @@  discard block
 block discarded – undo
1194 1194
     /**
1195 1195
      * Return's the original data if available, or an empty array.
1196 1196
      *
1197
-     * @return array The original data
1197
+     * @return string The original data
1198 1198
      */
1199 1199
     public function getOriginalData()
1200 1200
     {
@@ -1285,7 +1285,7 @@  discard block
 block discarded – undo
1285 1285
      *
1286 1286
      * @param string $message The message to strip the exception suffix from
1287 1287
      *
1288
-     * @return mixed The message without the exception suffix
1288
+     * @return string The message without the exception suffix
1289 1289
      */
1290 1290
     public function stripExceptionSuffix($message)
1291 1291
     {
Please login to merge, or discard this patch.
src/Observers/AbstractObserver.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     /**
55 55
      * Set's the obeserver's subject instance to initialize the observer with.
56 56
      *
57
-     * @param object $subject The observer's subject
57
+     * @param SubjectInterface $subject The observer's subject
58 58
      *
59 59
      * @return void
60 60
      */
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     /**
67 67
      * Return's the observer's subject instance.
68 68
      *
69
-     * @return object The observer's subject instance
69
+     * @return SubjectInterface The observer's subject instance
70 70
      */
71 71
     public function getSubject()
72 72
     {
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.