mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 14:40:09 +01:00
13 lines
212 B
PHP
13 lines
212 B
PHP
<?php
|
|
|
|
namespace Illuminate\Contracts\Validation;
|
|
|
|
interface ValidatesWhenResolved
|
|
{
|
|
/**
|
|
* Validate the given class instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function validateResolved();
|
|
}
|