Fix missing classes

This commit is contained in:
Adrien Crivelli 2017-10-28 22:52:23 +09:00
parent a093a468d1
commit b4a187bef8
No known key found for this signature in database
GPG Key ID: B182FD79DC6DE92E
2 changed files with 4 additions and 1 deletions

View File

@ -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';
} }

View File

@ -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)
{ {