improved syntax highligthing
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / php / PHPCompletionProcessor.java
index 601db7f..a9b88fc 100644 (file)
@@ -59,43 +59,43 @@ public class PHPCompletionProcessor implements IContentAssistProcessor {
        };
 
        protected final static String[] fgProposals =
-       {
-               
-               "elseif",
-               "else",
-               "endif",
-    "endfor",
-               "for",
-    "if",
-               "while",
-               "endwhile",
-               "switch",
-               "case",
-               "endswitch",
-               "break",
-               "continue",
-               "return",
-               "define",
-               "include",
-               "include_once",
-               "require",
-               "require_once",
-               "function",
-               "class",
-               "new",
-               "do",
-               "old_function",
-               "default",
-               "global",
-               "static",
-               "foreach",
-               "endforeach",
-               "extends",
-               "empty",
-               "array",
-               "isset",
-               "echo",
-               "var" };
+               {
+                       "array",
+                       "break",
+                       "class",
+                       "continue",
+                       "do",
+                       "echo",
+                       "else",
+                       "elseif",
+                       "endfor",
+                       "endif",
+                       "for",
+                       "if",
+                       "while",
+                       "endwhile",
+                       "switch",
+                       "case",
+                       "endswitch",
+                       "return",
+                       "define",
+                       "include",
+                       "include_once",
+                       "require",
+                       "require_once",
+                       "function",
+                       "new",
+                       "old_function",
+                       "default",
+                       "global",
+                       "static",
+                       "foreach",
+                       "endforeach",
+                       "extends",
+                       "empty",
+                       "isset",
+                       "var" };
+      
        protected IContextInformationValidator fValidator = new Validator();
 
        /* (non-Javadoc)