expatbase/var/www/html/flarum/vendor/illuminate/validation/DatabasePresenceVerifierInterface.php
2025-08-29 00:22:05 +09:00

14 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);
}