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
{
//
}