ValidatesWhenResolved.php 212 B

1234567891011121314
  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. }