proofdb/vendor/illuminate/validation/DatabasePresenceVerifierInterface.php
2026-05-01 23:40:14 +08:00

15 lines
287 B
PHP
Executable File

<?php
namespace Illuminate\Validation;
interface DatabasePresenceVerifierInterface extends PresenceVerifierInterface
{
/**
* Set the connection to be used.
*
* @param string $connection
* @return void
*/
public function setConnection($connection);
}