10 lines
152 B
PHP
10 lines
152 B
PHP
<?php
|
|
|
|
namespace Maatwebsite\Excel\Concerns;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Cell\IValueBinder;
|
|
|
|
interface WithCustomValueBinder extends IValueBinder
|
|
{
|
|
}
|