master

laravel/framework

Last updated at: 29/12/2023 09:21

ValidatesWhenResolved.php

TLDR

This file defines an interface ValidatesWhenResolved that requires the implementation of the validateResolved method.

Methods

validateResolved

This method does not have any parameters and does not return anything. It is intended to be implemented by classes that implement the ValidatesWhenResolved interface. The method is responsible for validating the given class instance.

Classes

There are no classes in this file.

<?php

namespace Illuminate\Contracts\Validation;

interface ValidatesWhenResolved
{
    /**
     * Validate the given class instance.
     *
     * @return void
     */
    public function validateResolved();
}