mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-30 20:18:00 +00:00
Reduce PHPStan error in tests
This commit is contained in:
@@ -5,13 +5,20 @@ namespace PhpOffice\PhpSpreadsheetTests\Worksheet;
|
||||
use PhpOffice\PhpSpreadsheet\Cell\Cell;
|
||||
use PhpOffice\PhpSpreadsheet\Worksheet\RowCellIterator;
|
||||
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
|
||||
use PHPUnit\Framework\MockObject\MockObject;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class RowCellIteratorTest extends TestCase
|
||||
{
|
||||
public $mockWorksheet;
|
||||
/**
|
||||
* @var Worksheet&MockObject
|
||||
*/
|
||||
private $mockWorksheet;
|
||||
|
||||
public $mockCell;
|
||||
/**
|
||||
* @var Cell&MockObject
|
||||
*/
|
||||
private $mockCell;
|
||||
|
||||
protected function setUp(): void
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user