1 | <?php |
||
11 | class FlexiBeeRW extends FlexiBeeRO |
||
12 | { |
||
13 | /** |
||
14 | * Sloupeček obsahující datum vložení záznamu do shopu. |
||
15 | * |
||
16 | * @var string |
||
17 | */ |
||
18 | public $myCreateColumn = 'false'; |
||
19 | |||
20 | /** |
||
21 | * Slopecek obsahujici datum poslení modifikace záznamu do shopu. |
||
22 | * |
||
23 | * @var string |
||
24 | */ |
||
25 | public $myLastModifiedColumn = 'lastUpdate'; |
||
26 | |||
27 | /** |
||
28 | * Last Inserted ID. |
||
29 | * |
||
30 | * @var int |
||
31 | */ |
||
32 | public $lastInsertedID = null; |
||
33 | |||
34 | /** |
||
35 | * Array of fields for next curl POST operation |
||
36 | * |
||
37 | * @var array |
||
38 | */ |
||
39 | protected $postFields = []; |
||
40 | |||
41 | /** |
||
42 | * Uloží záznam. |
||
43 | * |
||
44 | * @param array $data |
||
45 | * |
||
46 | * @return array odpověď |
||
47 | */ |
||
48 | public function insertToFlexiBee($data = null) |
||
56 | |||
57 | /** |
||
58 | * Give you last inserted record ID. |
||
59 | * |
||
60 | * @return int |
||
61 | */ |
||
62 | public function getLastInsertedId() |
||
66 | |||
67 | /** |
||
68 | * Smaže záznam |
||
69 | * |
||
70 | * @param int|string $id identifikátor záznamu |
||
71 | * @return boolean Response code is 200 ? |
||
72 | */ |
||
73 | public function deleteFromFlexiBee($id) |
||
79 | } |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..