8 lines
159 B
PHP
8 lines
159 B
PHP
<?php
|
|
interface RuleInterface
|
|
{
|
|
/**
|
|
* @return bool|void Returns true if passed, calls exit/redirect if failed
|
|
*/
|
|
public function execute();
|
|
} |