9 lines
126 B
PHP
9 lines
126 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace catcher\library\excel;
|
|
|
|
interface ShouldTaskContract
|
|
{
|
|
public function name();
|
|
} |