Skip to content

Commit 1973739

Browse files
committed
Merge branch 'master' of github.com:Spoje-NET/php-flexibee
2 parents 66ba92f + 4df780c commit 1973739

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

debian/changelog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
php-flexibee (1.30.1) UNRELEASED; urgency=medium
1+
php-flexibee (1.32) UNRELEASED; urgency=medium
22

33
* ease-core based
44
* package renamed

debian/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "PHP Based Library for easy interaction with czech accounting system Flexibee.",
44
"homepage": "https://github.com/Spoje-NET/FlexiPeeHP",
55
"license": "GPL-2.0+",
6-
"version": "1.31",
6+
"version": "1.32",
77
"type": "library",
88
"authors": [
99
{

debian/files

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
php-flexibee_1.30.1_all.buildinfo - optional
2-
php-flexibee_1.30.1_all.deb web optional
1+
php-flexibee_1.32_all.buildinfo - optional
2+
php-flexibee_1.32_all.deb web optional

debian/php-flexibee.debhelper.log

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ dh_link
1313
dh_strip_nondeterminism
1414
dh_compress
1515
dh_fixperms
16+
dh_missing
1617
dh_installdeb
1718
dh_gencontrol
1819
dh_md5sums
1920
dh_builddeb
20-
dh_builddeb

src/FlexiPeeHP/FlexiBeeRO.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class FlexiBeeRO extends \Ease\Sand
2727
*
2828
* @var string
2929
*/
30-
public static $libVersion = '1.30.1';
30+
public static $libVersion = '1.32';
3131

3232
/**
3333
* Základní namespace pro komunikaci s FlexiBee.
@@ -1638,7 +1638,7 @@ public function getAllFromFlexibee($conditions = null, $indexBy = null)
16381638
$flexiData = $this->getFlexiData('', $conditions);
16391639

16401640
if (!is_null($indexBy)) {
1641-
$flexiData = $this->reindexArrayBy($flexiData);
1641+
$flexiData = \Ease\Functions::reindexArrayBy($flexiData);
16421642
}
16431643

16441644
return $flexiData;
@@ -1687,7 +1687,7 @@ public function getColumnsFromFlexibee($columnsList, $conditions = [],
16871687

16881688
if (is_string($indexBy) && is_array($flexiData) && array_key_exists(0,
16891689
$flexiData) && array_key_exists($indexBy, $flexiData[0])) {
1690-
$flexiData = $this->reindexArrayBy($flexiData, $indexBy);
1690+
$flexiData = \Ease\Functions::reindexArrayBy($flexiData, $indexBy);
16911691
}
16921692

16931693
return $flexiData;
@@ -2661,7 +2661,7 @@ public function getReportsInfo()
26612661
if (\Ease\jQuery\Part::isAssoc($reportsRaw['reports']['report'])) {
26622662
$reports = [$reportsRaw['reports']['report']['reportId'] => $reportsRaw['reports']['report']];
26632663
} else {
2664-
$reports = self::reindexArrayBy($reportsRaw['reports']['report'],
2664+
$reports = \Ease\Functions::reindexArrayBy($reportsRaw['reports']['report'],
26652665
'reportId');
26662666
}
26672667
}

0 commit comments

Comments
 (0)