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

History::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
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