Fix unit tests

This commit is contained in:
Adrien Crivelli 2017-12-23 14:59:23 +09:00
parent 80e46707aa
commit d9bd45f4f1
No known key found for this signature in database
GPG Key ID: B182FD79DC6DE92E
2 changed files with 2 additions and 1 deletions

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 = [];

View File

@ -3,6 +3,7 @@
namespace PhpOffice\PhpSpreadsheet\Style;
use PhpOffice\PhpSpreadsheet\IComparable;
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
abstract class Supervisor implements IComparable
{