Fpdi   A
last analyzed

Complexity

Total Complexity 8

Size/Duplication

Total Lines 43
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
eloc 11
dl 0
loc 43
rs 10
c 2
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 = 0;
13
    protected $angle;
14
15
    public function getK()
16
    {
17
        return $this->k;
18
    }
19
20
    public function getH()
21
    {
22
        return $this->h;
23
    }
24
25
    public function getX()
26
    {
27
        return $this->x;
28
    }
29
30
    public function getY()
31
    {
32
        return $this->y;
33
    }
34
35
    public function getNumPages()
36
    {
37
        return $this->numPages;
38
    }
39
40
    public function setNumPages($numPages)
41
    {
42
        $this->numPages = $numPages;
43
    }
44
45
    public function getAngle()
46
    {
47
        $this->angle;
48
    }
49
50
    public function setAngle($angle)
51
    {
52
        $this->angle = $angle;
53
    }
54
}
55