Completed
Push — master ( 72b995...b71f1c )
by Feras
09:46
created

History   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 27
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A getHistory() 0 3 1
A getHistoryById() 0 3 1
1
<?php
2
3
4
namespace Iferas93\HistoriableModel;
5
6
7
class History
8
{
9
10
    /**
11
     * History constructor.
12
     */
13
    public function __construct()
14
    {
15
    }
16
17
18
    /**
19
     * Get History Data With Pagination
20
     */
21
    public function getHistory()
22
    {
23
    }
24
25
    /**
26
     * Get History By ID
27
     *
28
     * @param $id
29
     */
30
    public function getHistoryById($id)
0 ignored issues
show
Unused Code introduced by
The parameter $id is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
31
    {
32
    }
33
}
34