13 lines
187 B
PHP
Executable File
13 lines
187 B
PHP
Executable File
<?php namespace Illuminate\Contracts\Validation;
|
|
|
|
interface ValidatesWhenResolved {
|
|
|
|
/**
|
|
* Validate the given class instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function validate();
|
|
|
|
}
|