mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-01 21:19:18 +00:00
16 lines
320 B
PHP
16 lines
320 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Writer\Html;
|
|
|
|
class HtmlExtend2 extends \PhpOffice\PhpSpreadsheet\Writer\Html
|
|
{
|
|
protected static bool $alwaysFalse = false;
|
|
|
|
protected function tryClose(): bool
|
|
{
|
|
return fclose($this->fileHandle) && self::$alwaysFalse;
|
|
}
|
|
}
|