Completed
Push — master ( fd4537...c5f7b8 )
by Roberto
06:16 queued 03:11
created

Epson   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 12
Bugs 0 Features 0
Metric Value
wmc 1
c 12
b 0
f 0
lcom 0
cbo 1
dl 0
loc 11
rs 10

1 Method

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