Completed
Push — pac-264--pdo-exception ( 1d9001...eb5ae2 )
by Tim
01:31
created
RoboFile.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -18,10 +18,6 @@
 block discarded – undo
18 18
  * @link      http://www.techdivision.com
19 19
  */
20 20
 
21
-use Lurker\Event\FilesystemEvent;
22
-
23
-use Symfony\Component\Finder\Finder;
24
-
25 21
 /**
26 22
  * Defines the available build tasks.
27 23
  *
Please login to merge, or discard this patch.
src/Observers/CleanUpLinkObserver.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -159,7 +159,7 @@
 block discarded – undo
159 159
     /**
160 160
      * Return's the PK to create the product => variant relation.
161 161
      *
162
-     * @return integer The PK to create the relation with
162
+     * @return string The PK to create the relation with
163 163
      */
164 164
     protected function getLastPrimaryKey()
165 165
     {
Please login to merge, or discard this patch.
src/Services/ProductLinkProcessor.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -106,10 +106,10 @@  discard block
 block discarded – undo
106 106
      * Initialize the processor with the necessary assembler and repository instances.
107 107
      *
108 108
      * @param \TechDivision\Import\Dbal\Connection\ConnectionInterface                                       $connection                            The connection to use
109
-     * @param \TechDivision\Import\Product\Link\Repositories\\ProductLinkRepositoryInterface                 $productLinkRepository                 The product link repository to use
110
-     * @param \TechDivision\Import\Product\Link\Repositories\\ProductLinkAttributeIntRepositoryInterface     $productLinkAttributeIntRepository     The product link attribute integer repository to use
111
-     * @param \TechDivision\Import\Product\Link\Repositories\\ProductLinkAttributeDecimalRepositoryInterface $productLinkAttributeDecimalRepository The product link attribute decimal repository to use
112
-     * @param \TechDivision\Import\Product\Link\Repositories\\ProductLinkAttributeVarcharRepositoryInterface $productLinkAttributeVarcharRepository The product link attribute varchar repository to use
109
+     * @param ProductLinkRepositoryInterface                 $productLinkRepository                 The product link repository to use
110
+     * @param ProductLinkAttributeIntRepositoryInterface     $productLinkAttributeIntRepository     The product link attribute integer repository to use
111
+     * @param ProductLinkAttributeDecimalRepositoryInterface $productLinkAttributeDecimalRepository The product link attribute decimal repository to use
112
+     * @param ProductLinkAttributeVarcharRepositoryInterface $productLinkAttributeVarcharRepository The product link attribute varchar repository to use
113 113
      * @param \TechDivision\Import\Dbal\Actions\ActionInterface                                              $productLinkAction                     The product link action to use
114 114
      * @param \TechDivision\Import\Dbal\Actions\ActionInterface                                              $productLinkAttributeIntAction         The product link attribute integer action to use
115 115
      * @param \TechDivision\Import\Dbal\Actions\ActionInterface                                              $productLinkAttributeDecimalAction     The product link attribute decimal action to use
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
      * Commits a transaction, returning the database connection to autocommit mode until the next call to
178 178
      * ProductProcessor::beginTransaction() starts a new transaction.
179 179
      *
180
-     * @return boolean Returns TRUE on success or FALSE on failure
180
+     * @return boolean|null Returns TRUE on success or FALSE on failure
181 181
      * @link http://php.net/manual/en/pdo.commit.php
182 182
      */
183 183
     public function commit()
Please login to merge, or discard this patch.