Skip to content

Commit a6bef1b

Browse files
committed
Fix StyleCI complaints
1 parent f230b19 commit a6bef1b

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

database/seeds/RustServiceTableSeeder.php

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ private function addVanillaVariables()
126126
'user_editable' => 0,
127127
'rules' => 'required',
128128
]);
129-
129+
130130
ServiceVariable::updateOrCreate([
131131
'option_id' => $this->option['rustvanilla']->id,
132132
'env_variable' => 'HOSTNAME',
@@ -138,7 +138,7 @@ private function addVanillaVariables()
138138
'user_editable' => 1,
139139
'rules' => 'required|string',
140140
]);
141-
141+
142142
ServiceVariable::updateOrCreate([
143143
'option_id' => $this->option['rustvanilla']->id,
144144
'env_variable' => 'LEVEL',
@@ -150,7 +150,7 @@ private function addVanillaVariables()
150150
'user_editable' => 1,
151151
'rules' => 'required|string',
152152
]);
153-
153+
154154
ServiceVariable::updateOrCreate([
155155
'option_id' => $this->option['rustvanilla']->id,
156156
'env_variable' => 'DESCRIPTION',
@@ -162,7 +162,7 @@ private function addVanillaVariables()
162162
'user_editable' => 1,
163163
'rules' => 'required',
164164
]);
165-
165+
166166
ServiceVariable::updateOrCreate([
167167
'option_id' => $this->option['rustvanilla']->id,
168168
'env_variable' => 'URL',
@@ -174,7 +174,7 @@ private function addVanillaVariables()
174174
'user_editable' => 1,
175175
'rules' => 'url',
176176
]);
177-
177+
178178
ServiceVariable::updateOrCreate([
179179
'option_id' => $this->option['rustvanilla']->id,
180180
'env_variable' => 'WORLD_SIZE',
@@ -186,7 +186,7 @@ private function addVanillaVariables()
186186
'user_editable' => 1,
187187
'rules' => 'required|integer',
188188
]);
189-
189+
190190
ServiceVariable::updateOrCreate([
191191
'option_id' => $this->option['rustvanilla']->id,
192192
'env_variable' => 'SEED',
@@ -198,7 +198,7 @@ private function addVanillaVariables()
198198
'user_editable' => 1,
199199
'rules' => 'present',
200200
]);
201-
201+
202202
ServiceVariable::updateOrCreate([
203203
'option_id' => $this->option['rustvanilla']->id,
204204
'env_variable' => 'MAX_PLAYERS',
@@ -210,7 +210,7 @@ private function addVanillaVariables()
210210
'user_editable' => 1,
211211
'rules' => 'required|integer',
212212
]);
213-
213+
214214
ServiceVariable::updateOrCreate([
215215
'option_id' => $this->option['rustvanilla']->id,
216216
'env_variable' => 'SERVER_IMG',
@@ -222,7 +222,7 @@ private function addVanillaVariables()
222222
'user_editable' => 1,
223223
'rules' => 'url',
224224
]);
225-
225+
226226
ServiceVariable::updateOrCreate([
227227
'option_id' => $this->option['rustvanilla']->id,
228228
'env_variable' => 'RCON_PORT',
@@ -234,7 +234,7 @@ private function addVanillaVariables()
234234
'user_editable' => 0,
235235
'rules' => 'required|integer',
236236
]);
237-
237+
238238
ServiceVariable::updateOrCreate([
239239
'option_id' => $this->option['rustvanilla']->id,
240240
'env_variable' => 'RCON_PASS',
@@ -246,7 +246,7 @@ private function addVanillaVariables()
246246
'user_editable' => 1,
247247
'rules' => 'required',
248248
]);
249-
249+
250250
ServiceVariable::updateOrCreate([
251251
'option_id' => $this->option['rustvanilla']->id,
252252
'env_variable' => 'ADDITIONAL_ARGS',

0 commit comments

Comments
 (0)