szurubooru/src/IValidatable.php
Marcin Kurczewski 632bac8661 Added "use ..." statements
This version ditches backwards compatibility with PHP earlier than 5.6.
2014-10-18 18:48:36 +02:00

8 lines
131 B
PHP

<?php
namespace Szurubooru;
use Szurubooru\Validator;
interface IValidatable
{
public function validate(Validator $validator);
}