DatabasePresenceVerifierInterface.php 287 B

1234567891011121314
  1. <?php
  2. namespace Illuminate\Validation;
  3. interface DatabasePresenceVerifierInterface extends PresenceVerifierInterface
  4. {
  5. /**
  6. * Set the connection to be used.
  7. *
  8. * @param string $connection
  9. * @return void
  10. */
  11. public function setConnection($connection);
  12. }