Password for database in config (server.xml) is not longer required.
This commit is contained in:
parent
e768f77edf
commit
a82a8afa3a
@ -30,6 +30,30 @@
|
|||||||
<option name="ALIGN_CLASS_CONSTANTS" value="true" />
|
<option name="ALIGN_CLASS_CONSTANTS" value="true" />
|
||||||
<option name="PHPDOC_USE_FQCN" value="true" />
|
<option name="PHPDOC_USE_FQCN" value="true" />
|
||||||
</PHPCodeStyleSettings>
|
</PHPCodeStyleSettings>
|
||||||
|
<DBN-PSQL>
|
||||||
|
<case-options enabled="false">
|
||||||
|
<option name="KEYWORD_CASE" value="lower" />
|
||||||
|
<option name="FUNCTION_CASE" value="lower" />
|
||||||
|
<option name="PARAMETER_CASE" value="lower" />
|
||||||
|
<option name="DATATYPE_CASE" value="lower" />
|
||||||
|
<option name="OBJECT_CASE" value="preserve" />
|
||||||
|
</case-options>
|
||||||
|
<formatting-settings enabled="false" />
|
||||||
|
</DBN-PSQL>
|
||||||
|
<DBN-SQL>
|
||||||
|
<case-options enabled="false">
|
||||||
|
<option name="KEYWORD_CASE" value="lower" />
|
||||||
|
<option name="FUNCTION_CASE" value="lower" />
|
||||||
|
<option name="PARAMETER_CASE" value="lower" />
|
||||||
|
<option name="DATATYPE_CASE" value="lower" />
|
||||||
|
<option name="OBJECT_CASE" value="preserve" />
|
||||||
|
</case-options>
|
||||||
|
<formatting-settings enabled="false">
|
||||||
|
<option name="STATEMENT_SPACING" value="one_line" />
|
||||||
|
<option name="CLAUSE_CHOP_DOWN" value="chop_down_if_statement_long" />
|
||||||
|
<option name="ITERATION_ELEMENTS_WRAPPING" value="chop_down_if_not_single" />
|
||||||
|
</formatting-settings>
|
||||||
|
</DBN-SQL>
|
||||||
<XML>
|
<XML>
|
||||||
<option name="XML_LEGACY_SETTINGS_IMPORTED" value="true" />
|
<option name="XML_LEGACY_SETTINGS_IMPORTED" value="true" />
|
||||||
</XML>
|
</XML>
|
||||||
|
@ -42,7 +42,7 @@ class Config {
|
|||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
public function validate() {
|
public function validate() {
|
||||||
if (!$this->host || !$this->port || !$this->user || !$this->pass || !$this->name) {
|
if (!$this->host || !$this->port || !$this->user || !$this->name) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if ($this->user === 'mysql_user' || $this->pass === 'mysql_password') {
|
if ($this->user === 'mysql_user' || $this->pass === 'mysql_password') {
|
||||||
|
Loading…
Reference in New Issue
Block a user