eisen-dev/eisen_front

View on GitHub
webd/includes/account.php

Summary

Maintainability
A
0 mins
Test Coverage

Showing 16 of 16 total issues

A file should declare new symbols (classes, functions, constants, etc.) and cause no other side effects, or it should execute logic with side effects, but should not do both. The first symbol is defined on line 34 and the first side effect is on line 32.
Open

<?php
Severity: Minor
Found in webd/includes/account.php by phpcodesniffer

Only one argument is allowed per line in a multi-line function call
Open

$dbh = new PDO($dsn, $db_user, $db_pass,
Severity: Minor
Found in webd/includes/account.php by phpcodesniffer

Only one argument is allowed per line in a multi-line function call
Open

$dbh = new PDO($dsn, $db_user, $db_pass,
Severity: Minor
Found in webd/includes/account.php by phpcodesniffer

Line exceeds 120 characters; contains 130 characters
Open

$query = $dbh->prepare('UPDATE user_info SET mail_address = :mail, password = :new_password WHERE user_id=:user_id;');
Severity: Minor
Found in webd/includes/account.php by phpcodesniffer

Expected 1 space after IF keyword; 0 found
Open

if(isset($_POST['submit'])){
Severity: Minor
Found in webd/includes/account.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 8
Open

}else{
Severity: Minor
Found in webd/includes/account.php by phpcodesniffer

Expected 1 space after IF keyword; 0 found
Open

if(!isset($_SESSION['login_user'])) {
Severity: Minor
Found in webd/includes/account.php by phpcodesniffer

Expected 1 space after closing brace; 0 found
Open

}else{
Severity: Minor
Found in webd/includes/account.php by phpcodesniffer

Opening parenthesis of a multi-line function call must be the last content on the line
Open

$dbh = new PDO($dsn, $db_user, $db_pass,
Severity: Minor
Found in webd/includes/account.php by phpcodesniffer

Expected 1 space after closing parenthesis; found 0
Open

if(isset($_POST['submit'])){
Severity: Minor
Found in webd/includes/account.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 8
Open

if ($new_pass == $confirm_pass) {
Severity: Minor
Found in webd/includes/account.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 8
Open

}
Severity: Minor
Found in webd/includes/account.php by phpcodesniffer

Expected 1 newline at end of file; 0 found
Open

}
Severity: Minor
Found in webd/includes/account.php by phpcodesniffer

Expected 1 space after ELSE keyword; 0 found
Open

}else{
Severity: Minor
Found in webd/includes/account.php by phpcodesniffer

Closing parenthesis of a multi-line function call must be on a line by itself
Open

PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION));
Severity: Minor
Found in webd/includes/account.php by phpcodesniffer

Multi-line function call not indented correctly; expected 12 spaces but found 20
Open

PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION));
Severity: Minor
Found in webd/includes/account.php by phpcodesniffer
Category
Status