The trait Slides\Saml2\Commands\RendersTenants requires some properties which are not provided by Slides\Saml2\Commands\ListTenants: $uuid, $relay_state_url, $idp_x509_cert, $key, $idp_entity_id, $id, $name_id_format, $metadata, $created_at, $idp_logout_url, $idp_login_url, $updated_at, $deleted_at
Loading history...
15
16
/**
17
* The name and signature of the console command.
18
*
19
* @var string
20
*/
21
protected $signature = 'saml2:list-tenants';
22
23
/**
24
* The console command description.
25
*
26
* @var string
27
*/
28
protected $description = 'List all the tenants';
29
30
/**
31
* @var TenantRepository
32
*/
33
protected $tenants;
34
35
/**
36
* DeleteTenant constructor.
37
*
38
* @param TenantRepository $tenants
39
*/
40
public function __construct(TenantRepository $tenants)