Passed
Push — master ( 01a6cc...5c5605 )
by Rodrigo
01:44
created

Fpdi   A

Complexity

Total Complexity 8

Size/Duplication

Total Lines 42
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 42
rs 10
c 0
b 0
f 0
wmc 8

8 Methods

Rating   Name   Duplication   Size   Complexity  
A getX() 0 3 1
A getK() 0 3 1
A setNumPages() 0 3 1
A getAngle() 0 3 1
A getNumPages() 0 3 1
A setAngle() 0 3 1
A getY() 0 3 1
A getH() 0 3 1
1
<?php
2
/**
3
 * @author: Martin Hall-May <[email protected]?subject=Transparency>
4
 */
5
6
namespace Royopa\AlphaPDF;
7
8
use setasign\Fpdi\Fpdi as setaSignFpdi;
9
10
class Fpdi extends setaSignFpdi
11
{
12
    protected $numPages;
13
14
    public function getK()
15
    {
16
        return $this->k;
17
    }
18
19
    public function getH()
20
    {
21
        return $this->h;
22
    }
23
24
    public function getX()
25
    {
26
        return $this->x;
27
    }
28
29
    public function getY()
30
    {
31
        return $this->y;
32
    }
33
34
    public function getNumPages()
35
    {
36
        return $this->numPages;
37
    }
38
39
    public function setNumPages($numPages)
40
    {
41
        $this->numPages = $numPages;
42
    }
43
44
    public function getAngle()
45
    {
46
        $this->angle;
47
    }
48
49
    public function setAngle($angle)
50
    {
51
        $this->angle = $angle;
0 ignored issues
show
Bug Best Practice introduced by
The property angle does not exist. Although not strictly required by PHP, it is generally a best practice to declare properties explicitly.
Loading history...
52
    }
53
}
54