mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 04:14:03 +00:00
19 lines
No EOL
367 B
PHP
19 lines
No EOL
367 B
PHP
<?php
|
|
|
|
namespace Stancl\Tenancy\Contracts\Future;
|
|
|
|
use Stancl\Tenancy\Tenant;
|
|
|
|
/**
|
|
* This interface will be part of the StorageDriver interface in 3.x.
|
|
*/
|
|
interface CanDeleteKeys
|
|
{
|
|
/**
|
|
* Delete keys from the storage.
|
|
*
|
|
* @param string[] $keys
|
|
* @return void
|
|
*/
|
|
public function deleteMany(array $keys, Tenant $tenant = null): void;
|
|
} |