Elgin   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 12
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A setPrintMode() 0 4 1
1
<?php
2
3
namespace Posprint\Printers;
4
5
/**
6
 * Elgin class for POS printer
7
 * Model: i9
8
 *
9
 * @category   NFePHP
10
 * @package    Posprint
11
 * @copyright  Copyright (c) 2016
12
 * @license    http://www.gnu.org/licenses/lesser.html LGPL v3
13
 * @author     Roberto L. Machado <linux.rlm at gmail dot com>
14
 * @link       http://github.com/nfephp-org/posprint for the canonical source repository
15
 */
16
17
use Posprint\Printers\DefaultPrinter;
18
use Posprint\Printers\PrinterInterface;
19
20
final class Elgin extends DefaultPrinter implements PrinterInterface
21
{
22
    /**
23
     * Select printer mode
24
     *
25
     * @param string $mode
26
     */
27
    public function setPrintMode($mode = null)
28
    {
29
        //not used for this printer
30
    }
31
}
32