mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-10 01:56:26 +00:00
43754a130e
Add test, fix bug.
14 lines
239 B
PHP
14 lines
239 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Shared;
|
|
|
|
class XMLWriterNoUri extends \PhpOffice\PhpSpreadsheet\Shared\XMLWriter
|
|
{
|
|
public function openUri(string $uri): bool
|
|
{
|
|
return false;
|
|
}
|
|
}
|