| Total Complexity | 3 |
| Total Lines | 51 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class TenantCredentials extends \Illuminate\Console\Command |
||
| 14 | { |
||
| 15 | use RendersTenants; |
||
|
|
|||
| 16 | |||
| 17 | /** |
||
| 18 | * The name and signature of the console command. |
||
| 19 | * |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | protected $signature = 'saml2:tenant-credentials {id}'; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * The console command description. |
||
| 26 | * |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | protected $description = 'List tenant credentials for IdP'; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var TenantRepository |
||
| 33 | */ |
||
| 34 | protected $tenants; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * DeleteTenant constructor. |
||
| 38 | * |
||
| 39 | * @param TenantRepository $tenants |
||
| 40 | */ |
||
| 41 | public function __construct(TenantRepository $tenants) |
||
| 46 | } |
||
| 47 | |||
| 48 | /** |
||
| 49 | * Execute the console command. |
||
| 50 | * |
||
| 51 | * @return void |
||
| 52 | */ |
||
| 53 | public function handle() |
||
| 64 | } |
||
| 65 | } |