Issues (103)

Examples/LoginLogout.php (1 issue)

1
#!/usr/bin/php -f
2
<?php
3
/**
4
 * FlexiPeeHP - Example how to create Invoice
5
 *
6
 * @author     Vítězslav Dvořák <[email protected]>
7
 * @copyright  (G) 2018 Vitex Software
8
 */
9
10
namespace Example\FlexiPeeHP;
11
12
include_once './config.php';
13
include_once '../vendor/autoload.php';
14
15
16
$prober = new \FlexiPeeHP\FlexiBeeRO();
0 ignored issues
show
Deprecated Code introduced by
The class FlexiPeeHP\FlexiBeeRO has been deprecated: since version 2.0 ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated  annotation

16
$prober = /** @scrutinizer ignore-deprecated */ new \FlexiPeeHP\FlexiBeeRO();
Loading history...
17
18
$prober->login();
19
20
echo $prober->authSessionId;
21
22
$prober->logout();
23
24