Completed
Pull Request — master (#5)
by Tim
03:08
created
src/Observers/EeProductAttributeObserverTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
     /**
84 84
      * Return's the PK to create the product => attribute relation.
85 85
      *
86
-     * @return integer The PK to create the relation with
86
+     * @return string The PK to create the relation with
87 87
      */
88 88
     public function getPrimaryKey()
89 89
     {
Please login to merge, or discard this patch.
src/Observers/EeProductAttributeUpdateObserver.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     /**
77 77
      * Load's and return's the datetime attribute with the passed row/attribute/store ID.
78 78
      *
79
-     * @param integer $row         The row ID of the attribute
79
+     * @param integer $rowId         The row ID of the attribute
80 80
      * @param integer $attributeId The attribute ID of the attribute
81 81
      * @param integer $storeId     The store ID of the attribute
82 82
      *
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     /**
91 91
      * Load's and return's the decimal attribute with the passed row/attribute/store ID.
92 92
      *
93
-     * @param integer $row         The row ID of the attribute
93
+     * @param integer $rowId         The row ID of the attribute
94 94
      * @param integer $attributeId The attribute ID of the attribute
95 95
      * @param integer $storeId     The store ID of the attribute
96 96
      *
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
     /**
105 105
      * Load's and return's the integer attribute with the passed row/attribute/store ID.
106 106
      *
107
-     * @param integer $row         The row ID of the attribute
107
+     * @param integer $rowId         The row ID of the attribute
108 108
      * @param integer $attributeId The attribute ID of the attribute
109 109
      * @param integer $storeId     The store ID of the attribute
110 110
      *
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
     /**
119 119
      * Load's and return's the text attribute with the passed row/attribute/store ID.
120 120
      *
121
-     * @param integer $row         The row ID of the attribute
121
+     * @param integer $rowId         The row ID of the attribute
122 122
      * @param integer $attributeId The attribute ID of the attribute
123 123
      * @param integer $storeId     The store ID of the attribute
124 124
      *
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     /**
133 133
      * Load's and return's the varchar attribute with the passed row/attribute/store ID.
134 134
      *
135
-     * @param integer $row         The row ID of the attribute
135
+     * @param integer $rowId         The row ID of the attribute
136 136
      * @param integer $attributeId The attribute ID of the attribute
137 137
      * @param integer $storeId     The store ID of the attribute
138 138
      *
Please login to merge, or discard this patch.
src/Repositories/ProductDatetimeRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     /**
61 61
      * Load's and return's the varchar attribute with the passed row/attribute/store ID.
62 62
      *
63
-     * @param integer $row         The row ID of the attribute
63
+     * @param integer $rowId         The row ID of the attribute
64 64
      * @param integer $attributeId The attribute ID of the attribute
65 65
      * @param integer $storeId     The store ID of the attribute
66 66
      *
Please login to merge, or discard this patch.
src/Repositories/ProductDecimalRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     /**
61 61
      * Load's and return's the varchar attribute with the passed row/attribute/store ID.
62 62
      *
63
-     * @param integer $row         The row ID of the attribute
63
+     * @param integer $rowId         The row ID of the attribute
64 64
      * @param integer $attributeId The attribute ID of the attribute
65 65
      * @param integer $storeId     The store ID of the attribute
66 66
      *
Please login to merge, or discard this patch.
src/Repositories/ProductIntRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     /**
61 61
      * Load's and return's the varchar attribute with the passed row/attribute/store ID.
62 62
      *
63
-     * @param integer $row         The row ID of the attribute
63
+     * @param integer $rowId         The row ID of the attribute
64 64
      * @param integer $attributeId The attribute ID of the attribute
65 65
      * @param integer $storeId     The store ID of the attribute
66 66
      *
Please login to merge, or discard this patch.
src/Repositories/ProductTextRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     /**
61 61
      * Load's and return's the varchar attribute with the passed row/attribute/store ID.
62 62
      *
63
-     * @param integer $row         The row ID of the attribute
63
+     * @param integer $rowId         The row ID of the attribute
64 64
      * @param integer $attributeId The attribute ID of the attribute
65 65
      * @param integer $storeId     The store ID of the attribute
66 66
      *
Please login to merge, or discard this patch.
src/Repositories/ProductVarcharRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     /**
61 61
      * Load's and return's the varchar attribute with the passed row/attribute/store ID.
62 62
      *
63
-     * @param integer $row         The row ID of the attribute
63
+     * @param integer $rowId         The row ID of the attribute
64 64
      * @param integer $attributeId The attribute ID of the attribute
65 65
      * @param integer $storeId     The store ID of the attribute
66 66
      *
Please login to merge, or discard this patch.
src/Services/EeProductBunchProcessor.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     /**
77 77
      * Load's and return's the datetime attribute with the passed row/attribute/store ID.
78 78
      *
79
-     * @param integer $row         The row ID of the attribute
79
+     * @param integer $rowId         The row ID of the attribute
80 80
      * @param integer $attributeId The attribute ID of the attribute
81 81
      * @param integer $storeId     The store ID of the attribute
82 82
      *
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     /**
91 91
      * Load's and return's the decimal attribute with the passed row/attribute/store ID.
92 92
      *
93
-     * @param integer $row         The row ID of the attribute
93
+     * @param integer $rowId         The row ID of the attribute
94 94
      * @param integer $attributeId The attribute ID of the attribute
95 95
      * @param integer $storeId     The store ID of the attribute
96 96
      *
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
     /**
105 105
      * Load's and return's the integer attribute with the passed row/attribute/store ID.
106 106
      *
107
-     * @param integer $row         The row ID of the attribute
107
+     * @param integer $rowId         The row ID of the attribute
108 108
      * @param integer $attributeId The attribute ID of the attribute
109 109
      * @param integer $storeId     The store ID of the attribute
110 110
      *
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
     /**
119 119
      * Load's and return's the text attribute with the passed row/attribute/store ID.
120 120
      *
121
-     * @param integer $row         The row ID of the attribute
121
+     * @param integer $rowId         The row ID of the attribute
122 122
      * @param integer $attributeId The attribute ID of the attribute
123 123
      * @param integer $storeId     The store ID of the attribute
124 124
      *
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     /**
133 133
      * Load's and return's the varchar attribute with the passed row/attribute/store ID.
134 134
      *
135
-     * @param integer $row         The row ID of the attribute
135
+     * @param integer $rowId         The row ID of the attribute
136 136
      * @param integer $attributeId The attribute ID of the attribute
137 137
      * @param integer $storeId     The store ID of the attribute
138 138
      *
Please login to merge, or discard this patch.
src/Services/EeProductBunchProcessorInterface.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     /**
52 52
      * Load's and return's the datetime attribute with the passed row/attribute/store ID.
53 53
      *
54
-     * @param integer $row         The row ID of the attribute
54
+     * @param integer $rowId         The row ID of the attribute
55 55
      * @param integer $attributeId The attribute ID of the attribute
56 56
      * @param integer $storeId     The store ID of the attribute
57 57
      *
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     /**
63 63
      * Load's and return's the decimal attribute with the passed row/attribute/store ID.
64 64
      *
65
-     * @param integer $row         The row ID of the attribute
65
+     * @param integer $rowId         The row ID of the attribute
66 66
      * @param integer $attributeId The attribute ID of the attribute
67 67
      * @param integer $storeId     The store ID of the attribute
68 68
      *
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     /**
74 74
      * Load's and return's the integer attribute with the passed row/attribute/store ID.
75 75
      *
76
-     * @param integer $row         The row ID of the attribute
76
+     * @param integer $rowId         The row ID of the attribute
77 77
      * @param integer $attributeId The attribute ID of the attribute
78 78
      * @param integer $storeId     The store ID of the attribute
79 79
      *
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     /**
85 85
      * Load's and return's the text attribute with the passed row/attribute/store ID.
86 86
      *
87
-     * @param integer $row         The row ID of the attribute
87
+     * @param integer $rowId         The row ID of the attribute
88 88
      * @param integer $attributeId The attribute ID of the attribute
89 89
      * @param integer $storeId     The store ID of the attribute
90 90
      *
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     /**
96 96
      * Load's and return's the varchar attribute with the passed row/attribute/store ID.
97 97
      *
98
-     * @param integer $row         The row ID of the attribute
98
+     * @param integer $rowId         The row ID of the attribute
99 99
      * @param integer $attributeId The attribute ID of the attribute
100 100
      * @param integer $storeId     The store ID of the attribute
101 101
      *
Please login to merge, or discard this patch.