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

Epson::setPrintMode()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 5
Bugs 0 Features 0
Metric Value
c 5
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 1
nc 1
nop 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