+
+
+
\ No newline at end of file
diff --git a/databaseSettings.xml b/databaseSettings.xml
new file mode 100644
index 0000000..f8c5556
--- /dev/null
+++ b/databaseSettings.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/debugger.xml b/debugger.xml
new file mode 100644
index 0000000..544ab15
--- /dev/null
+++ b/debugger.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/diff.xml b/diff.xml
new file mode 100644
index 0000000..0942205
--- /dev/null
+++ b/diff.xml
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/editor.codeinsight.xml b/editor.codeinsight.xml
new file mode 100644
index 0000000..878bbb5
--- /dev/null
+++ b/editor.codeinsight.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/editor.xml b/editor.xml
new file mode 100644
index 0000000..7abb459
--- /dev/null
+++ b/editor.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/file.template.settings.xml b/file.template.settings.xml
new file mode 100644
index 0000000..5d8867c
--- /dev/null
+++ b/file.template.settings.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/fileTemplates/code/PHP Getter Method.php b/fileTemplates/code/PHP Getter Method.php
new file mode 100644
index 0000000..7550b06
--- /dev/null
+++ b/fileTemplates/code/PHP Getter Method.php
@@ -0,0 +1,13 @@
+/**
+ * Getter for ${FIELD_NAME}
+ *
+ * @return ${TYPE_HINT}
+ */
+public ${STATIC} function ${GET_OR_IS}${NAME}()
+{
+#if (${STATIC} == "static")
+ return self::$${FIELD_NAME};
+#else
+ return $this->${FIELD_NAME};
+#end
+}
diff --git a/fileTemplates/code/PHP Setter Method.php b/fileTemplates/code/PHP Setter Method.php
new file mode 100644
index 0000000..230e37c
--- /dev/null
+++ b/fileTemplates/code/PHP Setter Method.php
@@ -0,0 +1,15 @@
+/**
+ * Setter for ${PARAM_NAME}
+ *
+ * @param ${TYPE_HINT} $${PARAM_NAME}
+ *
+ * @return void
+ */
+public ${STATIC} function set${NAME}($${PARAM_NAME})
+{
+#if (${STATIC} == "static")
+ self::$${FIELD_NAME} = $${PARAM_NAME};
+#else
+ $this->${FIELD_NAME} = $${PARAM_NAME};
+#end
+}
diff --git a/filetypes.xml b/filetypes.xml
new file mode 100644
index 0000000..91c038c
--- /dev/null
+++ b/filetypes.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/find.xml b/find.xml
new file mode 100644
index 0000000..bb8a2bf
--- /dev/null
+++ b/find.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+ *.properties
+ *.html
+ *.jsp
+ *.xml
+ *.java
+ *.as
+ *.css
+ *.mxml
+ *.js
+ *.php
+
+
+
\ No newline at end of file
diff --git a/ide.general.xml b/ide.general.xml
new file mode 100644
index 0000000..0fb24f5
--- /dev/null
+++ b/ide.general.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ignore.xml b/ignore.xml
new file mode 100644
index 0000000..0a505ab
--- /dev/null
+++ b/ignore.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/inspection/Default.xml b/inspection/Default.xml
new file mode 100644
index 0000000..beb834e
--- /dev/null
+++ b/inspection/Default.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/inspection/Project Default.xml b/inspection/Project Default.xml
new file mode 100644
index 0000000..e32fda8
--- /dev/null
+++ b/inspection/Project Default.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/usageView.xml b/usageView.xml
new file mode 100644
index 0000000..e0732c8
--- /dev/null
+++ b/usageView.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/vcs.xml b/vcs.xml
new file mode 100644
index 0000000..6456a83
--- /dev/null
+++ b/vcs.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/watcherDefaultTasks.xml b/watcherDefaultTasks.xml
new file mode 100644
index 0000000..255158f
--- /dev/null
+++ b/watcherDefaultTasks.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/web-browsers.xml b/web-browsers.xml
new file mode 100644
index 0000000..08cc3b9
--- /dev/null
+++ b/web-browsers.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+