18 lines
121 B
PHP
18 lines
121 B
PHP
<?php
|
|
|
|
|
|
namespace Annotation;
|
|
|
|
|
|
interface Porters
|
|
{
|
|
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function process(): mixed;
|
|
|
|
|
|
}
|