Fix unit tests

This commit is contained in:
Adrien Crivelli
2017-12-23 14:59:23 +09:00
parent 80e46707aa
commit d9bd45f4f1
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ class Style extends Supervisor
*/
public function __construct($isSupervisor = false, $isConditional = false)
{
parent::__construct($this->isSupervisor);
parent::__construct($isSupervisor);
// Initialise values
$this->conditionalStyles = [];
+1
View File
@@ -3,6 +3,7 @@
namespace PhpOffice\PhpSpreadsheet\Style;
use PhpOffice\PhpSpreadsheet\IComparable;
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
abstract class Supervisor implements IComparable
{