You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ValidatesWhenResolved.php 212B

12345678910111213
  1. <?php
  2. namespace Illuminate\Contracts\Validation;
  3. interface ValidatesWhenResolved
  4. {
  5. /**
  6. * Validate the given class instance.
  7. *
  8. * @return void
  9. */
  10. public function validateResolved();
  11. }