Skip to content

Commit b4a187b

Browse files
committed
Fix missing classes
1 parent a093a46 commit b4a187b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/PhpSpreadsheet/Calculation/Engineering.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2016,7 +2016,7 @@ public static function IMSQRT($complexNumber)
20162016
$parsedComplex = self::parseComplex($complexNumber);
20172017

20182018
$theta = self::IMARGUMENT($complexNumber);
2019-
if ($theta === functions::DIV0()) {
2019+
if ($theta === Functions::DIV0()) {
20202020
return '0';
20212021
}
20222022

src/PhpSpreadsheet/Chart/Renderer/JpGraph.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
use PhpOffice\PhpSpreadsheet\Chart;
66
use PhpOffice\PhpSpreadsheet\Settings;
7+
use PhpOffice\PhpSpreadsheet\Style\NumberFormat;
78

89
class JpGraph
910
{
@@ -846,6 +847,8 @@ public function render($outputDestination)
846847

847848
/**
848849
* Create a new jpgraph.
850+
*
851+
* @param Chart $chart
849852
*/
850853
public function __construct(Chart $chart)
851854
{

0 commit comments

Comments
 (0)