Files
apimacro/vendor/laravel/framework/src/Illuminate/Validation/DatabasePresenceVerifierInterface.php

15 lines
287 B
PHP
Raw Normal View History

2024-05-07 12:17:25 +02:00
<?php
namespace Illuminate\Validation;
interface DatabasePresenceVerifierInterface extends PresenceVerifierInterface
{
/**
* Set the connection to be used.
*
* @param string $connection
* @return void
*/
public function setConnection($connection);
}