master

laravel/framework

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

ImplicitRule.php

TLDR

The ImplicitRule interface in the Illuminate\Contracts\Validation namespace is deprecated and extends the Rule interface.

END

<?php

namespace Illuminate\Contracts\Validation;

/**
 * @deprecated see ValidationRule
 */
interface ImplicitRule extends Rule
{
    //
}