12 lines
146 B
PHP
12 lines
146 B
PHP
<?php
|
|
|
|
namespace Dipper\Excel\Concerns;
|
|
|
|
interface WithMappedCells
|
|
{
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function mapping(): array;
|
|
}
|