Fix missing classes
This commit is contained in:
parent
a093a468d1
commit
b4a187bef8
|
@ -2016,7 +2016,7 @@ class Engineering
|
||||||
$parsedComplex = self::parseComplex($complexNumber);
|
$parsedComplex = self::parseComplex($complexNumber);
|
||||||
|
|
||||||
$theta = self::IMARGUMENT($complexNumber);
|
$theta = self::IMARGUMENT($complexNumber);
|
||||||
if ($theta === functions::DIV0()) {
|
if ($theta === Functions::DIV0()) {
|
||||||
return '0';
|
return '0';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ namespace PhpOffice\PhpSpreadsheet\Chart\Renderer;
|
||||||
|
|
||||||
use PhpOffice\PhpSpreadsheet\Chart;
|
use PhpOffice\PhpSpreadsheet\Chart;
|
||||||
use PhpOffice\PhpSpreadsheet\Settings;
|
use PhpOffice\PhpSpreadsheet\Settings;
|
||||||
|
use PhpOffice\PhpSpreadsheet\Style\NumberFormat;
|
||||||
|
|
||||||
class JpGraph
|
class JpGraph
|
||||||
{
|
{
|
||||||
|
@ -846,6 +847,8 @@ class JpGraph
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new jpgraph.
|
* Create a new jpgraph.
|
||||||
|
*
|
||||||
|
* @param Chart $chart
|
||||||
*/
|
*/
|
||||||
public function __construct(Chart $chart)
|
public function __construct(Chart $chart)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue