The type Slides\Saml2\Repositories\TenantRepository was not found. Maybe you did not declare it correctly or list all dependencies?
The issue could also be caused by a filter entry in the build configuration.
If the path has been excluded in your configuration, e.g. excluded_paths:["lib/*"],
you can move it to the dependency path list as follows:
The trait Slides\Saml2\Commands\RendersTenants requires some properties which are not provided by Slides\Saml2\Commands\ListAll: $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...
10
11
/**
12
* The name and signature of the console command.
13
*
14
* @var string
15
*/
16
protected $signature = 'saml2:idp-list';
17
18
/**
19
* The console command description.
20
*
21
* @var string
22
*/
23
protected $description = 'List all the tenants';
24
25
/**
26
* @var TenantRepository
27
*/
28
protected TenantRepository $tenants;
29
30
/**
31
* DeleteTenant constructor.
32
*
33
* @param TenantRepository $tenants
34
*/
35
public function __construct(TenantRepository $tenants)
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths