File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/org/netbeans/modules/php/phpcsfixer Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -252,7 +252,7 @@ public List<String> getAllOptions() {
252252 }
253253 }
254254 if (useCustom () && !getCustom ().isEmpty ()) {
255- all .add ( getCustom ());
255+ all .addAll ( StringUtils . explode ( getCustom (), " " )); // NOI18N
256256 }
257257
258258 return all ;
Original file line number Diff line number Diff line change 1919import java .util .List ;
2020import java .util .prefs .Preferences ;
2121import org .netbeans .modules .php .api .phpmodule .PhpModule ;
22+ import org .netbeans .modules .php .api .util .StringUtils ;
2223import org .netbeans .modules .php .phpcsfixer .commands .PhpCsFixer ;
2324import static org .netbeans .modules .php .phpcsfixer .options .PhpCsFixerOptions .LATEST_VERSION ;
2425
@@ -213,7 +214,7 @@ public static List<String> getAllOptions(PhpModule phpModule) {
213214 }
214215 }
215216 if (useCustom (phpModule ) && !getCustom (phpModule ).isEmpty ()) {
216- all .add ( getCustom (phpModule ));
217+ all .addAll ( StringUtils . explode ( getCustom (phpModule ), " " )); // NOI18N
217218 }
218219 return all ;
219220 }
You can’t perform that action at this time.
0 commit comments