12 lines
148 B
PHP
12 lines
148 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Maatwebsite\Excel\Concerns;
|
||
|
|
|
||
|
|
interface WithValidation
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @return array
|
||
|
|
*/
|
||
|
|
public function rules(): array;
|
||
|
|
}
|