20 lines
212 B
PHP
20 lines
212 B
PHP
<?php
|
|
|
|
|
|
namespace Note;
|
|
|
|
|
|
|
|
interface INote
|
|
{
|
|
|
|
/**
|
|
* @param mixed $class
|
|
* @param mixed $method
|
|
* @return mixed
|
|
*/
|
|
public function execute(mixed $class, mixed $method = ''): mixed;
|
|
|
|
|
|
}
|