mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fix specific [skip ci]
This commit is contained in:
parent
bc525e7272
commit
9afd5cb277
@ -247,7 +247,7 @@ class Data
|
|||||||
*/
|
*/
|
||||||
public function getSpecifix()
|
public function getSpecifix()
|
||||||
{
|
{
|
||||||
return $this->specifix;
|
return is_array($this->specifix) ? $this->specifix : [];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -41,7 +41,7 @@ class Importer
|
|||||||
/** @var int */
|
/** @var int */
|
||||||
protected $rows = 0;
|
protected $rows = 0;
|
||||||
/** @var array */
|
/** @var array */
|
||||||
protected $specifix;
|
protected $specifix = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Used by CsvController.
|
* Used by CsvController.
|
||||||
@ -207,7 +207,7 @@ class Importer
|
|||||||
*/
|
*/
|
||||||
public function getSpecifix()
|
public function getSpecifix()
|
||||||
{
|
{
|
||||||
return $this->specifix;
|
return is_array($this->specifix) ? $this->specifix : [];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user