Completed
Push — master ( ec9a55...882bfb )
by Neomerx
03:22
created
src/Seeds/SeedTrait.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
      *
163 163
      * @return string|null
164 164
      */
165
-    protected function seedRowData(string $tableName, array $data): ?string
165
+    protected function seedRowData(string $tableName, array $data): ? string
166 166
     {
167 167
         return $this->insertRow($tableName, $this->getConnection(), $data);
168 168
     }
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
      *
174 174
      * @return string|null
175 175
      */
176
-    protected function seedModelData(string $modelClass, array $data): ?string
176
+    protected function seedModelData(string $modelClass, array $data): ? string
177 177
     {
178 178
         return $this->seedRowData($this->getModelSchemes()->getTable($modelClass), $data);
179 179
     }
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
      *
194 194
      * @return string|null
195 195
      */
196
-    private function insertRow($tableName, Connection $connection, array $data): ?string
196
+    private function insertRow($tableName, Connection $connection, array $data): ? string
197 197
     {
198 198
         $quotedFields = [];
199 199
         foreach ($data as $column => $value) {
Please login to merge, or discard this patch.