Completed
Push — master ( b32f2f...b78bd2 )
by Vítězslav
01:59
created

src/FlexiPeeHP/FakturaPrijata.php (1 issue)

Labels
Severity
1
<?php
2
/**
3
 * FlexiPeeHP - Invoice Incomed.
4
 *
5
 * @author     Vítězslav Dvořák <[email protected]>
6
 * @copyright  (C) 2015-2017 Spoje.Net
7
 */
8
9
namespace FlexiPeeHP;
10
11
/**
12
 * Incoming invoice
13
 *
14
 * @link https://demo.flexibee.eu/c/demo/faktura-prijata/properties
15
 */
16
class FakturaPrijata extends FlexiBeeRW
17
{
18
    use Stitky;
0 ignored issues
show
The trait FlexiPeeHP\Stitky requires the property $lastResultCode which is not provided by FlexiPeeHP\FakturaPrijata.
Loading history...
19
    use Firma;
20
    /**
21
     * Evidence použitá třídou.
22
     *
23
     * @var string
24
     */
25
    public $evidence = 'faktura-prijata';
26
27
}
28