mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 14:14:04 +00:00
13 lines
279 B
PHP
13 lines
279 B
PHP
<?php
|
|
|
|
namespace Stancl\Tenancy\Traits;
|
|
|
|
trait HasATenantsOption
|
|
{
|
|
protected function getOptions()
|
|
{
|
|
return array_merge([
|
|
['tenants', null, InputOption::VALUE_IS_ARRAY | InputOption::VALUE_OPTIONAL, '', null]
|
|
], parent::getOptions());
|
|
}
|
|
}
|