mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-23 03:02:33 +01:00
16 lines
251 B
PHP
16 lines
251 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
// @see: https://github.com/PHPOffice/PHPExcel/blob/1.8/Classes/PHPExcel.php
|
|
|
|
final class PHPExcel
|
|
{
|
|
/**
|
|
* @return PHPExcel_Worksheet
|
|
*/
|
|
public function setActiveSheetIndex($pIndex = 0)
|
|
{
|
|
}
|
|
}
|