Completed
Push — 15.x ( 0b1d63...4cb802 )
by Tim
02:51
created
src/Listeners/FinalizeRegistryListener.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,6 @@
 block discarded – undo
47 47
     /**
48 48
      * Initializes the event.
49 49
      *
50
-     * @param \TechDivision\Import\ConfigurationInterface              $configuration     The configuration instance
51 50
      * @param \TechDivision\Import\Services\RegistryProcessorInterface $registryProcessor The registry processor instance
52 51
      */
53 52
     public function __construct(RegistryProcessorInterface $registryProcessor)
Please login to merge, or discard this patch.
src/Callbacks/AbstractBooleanCallback.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
      *
55 55
      * @param \TechDivision\Import\Observers\AttributeCodeAndValueAwareObserverInterface|null $observer The observer
56 56
      *
57
-     * @return mixed The modified value
57
+     * @return boolean|null The modified value
58 58
      */
59 59
     public function handle(AttributeCodeAndValueAwareObserverInterface $observer = null)
60 60
     {
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
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      *
43 43
      * @param \TechDivision\Import\Observers\AttributeCodeAndValueAwareObserverInterface|null $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 = null)
48 48
     {
Please login to merge, or discard this patch.
src/Callbacks/AbstractValidatorCallback.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
     /**
91 91
      * Set's the validations.
92 92
      *
93
-     * @param array $validations The available validations
93
+     * @param \ArrayAccess $validations The available validations
94 94
      */
95 95
     protected function setValidations(array $validations)
96 96
     {
Please login to merge, or discard this patch.
src/Loaders/MysqlVariablesLoader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
      *
106 106
      * @param \TechDivision\Import\Connection\ConnectionInterface $connection    The connection instance
107 107
      * @param string                                              $variableScope The MySQL variable scope
108
-     * @param string                                              $variableNmae  The MySQL variable name
108
+     * @param string                                              $variableName  The MySQL variable name
109 109
      */
110 110
     public function __construct(ConnectionInterface $connection, $variableScope = 'GLOBAL', $variableName = 'innodb%')
111 111
     {
Please login to merge, or discard this patch.
src/Repositories/EavAttributeOptionValueRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@
 block discarded – undo
160 160
      * @param integer $entityTypeId The entity type ID of the attribute option values to return
161 161
      * @param integer $storeId      The store ID of the attribute option values to return
162 162
      *
163
-     * @return array The EAV attribute option values
163
+     * @return \Generator The EAV attribute option values
164 164
      */
165 165
     public function findAllByEntityTypeIdAndStoreId($entityTypeId, $storeId)
166 166
     {
Please login to merge, or discard this patch.
src/Listeners/RenderValidationsListener.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
      * Initializes the listener with the loader and the render instances.
55 55
      *
56 56
      * @param \TechDivision\Import\Loaders\LoaderInterface                                      $loader   The loader instance
57
-     * @param \TechDivision\Import\Listeners\Renderer\Validations\ValidationRendererInterface[] $renderer The array with the validation renderer instances
57
+     * @param \ArrayAccess $renderer The array with the validation renderer instances
58 58
      */
59 59
     public function __construct(LoaderInterface $loader, \ArrayAccess $renderer)
60 60
     {
Please login to merge, or discard this patch.