Skip to content

Commit 58b7d1d

Browse files
committed
update for 2024.6.8
1 parent 0885b4c commit 58b7d1d

File tree

216 files changed

+6920
-5460
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

216 files changed

+6920
-5460
lines changed

src/AbraFlexi/Actions.php

Lines changed: 1224 additions & 448 deletions
Large diffs are not rendered by default.

src/AbraFlexi/EvidenceList.php

Lines changed: 344 additions & 90 deletions
Large diffs are not rendered by default.

src/AbraFlexi/Formats.php

Lines changed: 239 additions & 19 deletions
Large diffs are not rendered by default.

src/AbraFlexi/RO.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,12 +138,12 @@ class RO extends \Ease\Sand
138138
/**
139139
* Sloupeček obsahující datum vložení záznamu do shopu.
140140
*/
141-
public string $myCreateColumn = 'false';
141+
public ?string $myCreateColumn = 'false';
142142

143143
/**
144144
* Sloupeček obsahujici datum poslení modifikace záznamu do shopu.
145145
*/
146-
public string $myLastModifiedColumn = 'lastUpdate';
146+
public ?string $myLastModifiedColumn = 'lastUpdate';
147147

148148
/**
149149
* Informace o posledním HTTP requestu.

src/AbraFlexi/RW.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ class RW extends RO
2323
/**
2424
* Sloupeček obsahující datum vložení záznamu do shopu.
2525
*/
26-
public string $myCreateColumn = 'false';
26+
public ?string $myCreateColumn = '';
2727

2828
/**
29-
* Slopecek obsahujici datum poslení modifikace záznamu do shopu.
29+
* Column with last modification datetime/stamp.
3030
*/
31-
public string $myLastModifiedColumn = 'lastUpdate';
31+
public ?string $myLastModifiedColumn = 'lastUpdate';
3232

3333
/**
3434
* Last Inserted ID.
@@ -278,7 +278,7 @@ public function deleteFromAbraFlexi($id = null)
278278
}
279279

280280
$this->performRequest(
281-
$this->getEvidenceUrl().'/'.self::urlizeId($id),
281+
$this->getEvidenceUrl().'/'.Functions::urlizeId($id),
282282
'DELETE',
283283
);
284284

@@ -434,9 +434,9 @@ public static function timestampToFlexiDateTime($timpestamp = null)
434434
*
435435
* @see Relations
436436
*
437-
* @param array $data pole dat
438-
* @param string $relationPath path evidence (relation) pro vkládaná data
439-
* @param bool $removeAll
437+
* @param array<string, string> $data pole dat
438+
* @param string $relationPath path evidence (relation) pro vkládaná data
439+
* @param bool $removeAll
440440
*
441441
* @return bool Operation success
442442
*/
@@ -517,8 +517,8 @@ public function vazbaDel($vazba): void
517517
* Convert data to AbraFlexi like Json format.
518518
* Array of Labels is converted to coma separated list.
519519
*
520-
* @param array $data
521-
* @param int $options json_encode options like JSON_PRETTY_PRINT etc
520+
* @param array<string, array<string, string>|string> $data
521+
* @param int $options json_encode options like JSON_PRETTY_PRINT etc
522522
*
523523
* @return string
524524
*/

0 commit comments

Comments
 (0)