12 lines
159 B
PHP
12 lines
159 B
PHP
<?php
|
|
|
|
namespace Maatwebsite\Excel\Concerns;
|
|
|
|
interface WithCustomStartCell
|
|
{
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function startCell(): string;
|
|
}
|