Completed
Push — master ( fcf66f...4020b1 )
by Sam
02:59
created

UserRepository   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 20
Duplicated Lines 50 %

Coupling/Cohesion

Components 1
Dependencies 3

Importance

Changes 0
Metric Value
wmc 1
lcom 1
cbo 3
dl 10
loc 20
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getId() 10 10 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
3
namespace Xtools;
4
5
class UserRepository extends Repository
6
{
7
8
    /**
9
     * Get the user's ID.
10
     * @param string $databaseName The database to query.
11
     * @param string $username The username to find.
12
     * @return int
13
     */
14 View Code Duplication
    public function getId($databaseName, $username)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
15
    {
16
        $userTable = $this->getTableName($databaseName, 'user');
17
        $sql = "SELECT user_id FROM $userTable WHERE user_name = :username LIMIT 1";
18
        $resultQuery = $this->projectsConnection->prepare($sql);
19
        $resultQuery->bindParam("username", $username);
20
        $resultQuery->execute();
21
        $userId = (int)$resultQuery->fetchColumn();
22
        return $userId;
23
    }
24
}
25