Issues (103)

Examples/BatchOperation.php (1 issue)

1
#!/usr/bin/php -f
2
<?php
3
/**
4
 * FlexiPeeHP - Dávkové operace
5
 *
6
 * @link https://www.flexibee.eu/api/dokumentace/ref/batch-operations/ Dávkové Operace
7
 * @author     Vítězslav Dvořák <[email protected]>
8
 * @copyright  (G) 2018 Vitex Software
9
 */
10
11
namespace Example\FlexiPeeHP;
12
13
include_once './config.php';
14
include_once '../vendor/autoload.php';
15
16
$adr = new \FlexiPeeHP\Adresar(null,['filter'=>"nazev like 'FlexiBee Systems s.r.o.'"]);
17
$adr->insertToFlexiBee([
0 ignored issues
show
Deprecated Code introduced by
The function FlexiPeeHP\RW::insertToFlexiBee() 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

17
/** @scrutinizer ignore-deprecated */ $adr->insertToFlexiBee([

This function has been deprecated. The supplier of the function has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.

Loading history...
18
    'nazev'=>'ABRA Flexi s.r.o.',
19
    'ulice'=>'Jeremiášova 1422/7b',
20
    'mesto'=>'Praha 13 Stodůlky',
21
    'psc'=>'155 00'
22
    ]);
23
24
/*
25
{"winstrom":{"@version":"1.0","adresar":{"nazev":"ABRA Flexi s.r.o.","ulice":"Jeremi\u00e1\u0161ova 1422\/7b","mesto":"Praha 13 Stod\u016flky","psc":"155 00"},"adresar@filter":"nazev like 'FlexiBee Systems s.r.o.'"}}
26
*/
27