24 lines
252 B
PHP
24 lines
252 B
PHP
<?php
|
|
|
|
|
|
namespace Snowflake;
|
|
|
|
|
|
interface IAspect
|
|
{
|
|
|
|
|
|
/**
|
|
* IAspect constructor.
|
|
* @param array $handler
|
|
*/
|
|
public function __construct(array $handler);
|
|
|
|
|
|
/**
|
|
* @return mixed|void
|
|
*/
|
|
public function invoke();
|
|
|
|
}
|