Page MenuHomePhorge

DomainsCommand.php
No OneTemporary

Authored By
Unknown
Size
638 B
Referenced Files
None
Subscribers
None

DomainsCommand.php

<?php
namespace App\Console\Commands;
use App\Console\ObjectListCommand;
/**
* List domains.
*
* Example usage:
*
* ```
* $ ./artisan domains
* 96217419
* 502526624
* 539082236
* (...)
* ```
*
* To include specific attributes, use `--attr` (allowed multiple times):
*
* ```
* $ ./artisan domains --attr=namespace --attr=status
* 96217419 attorneymail.ch 51
* 502526624 example.net 51
* 539082236 collaborative.li 51
* (...)
* ```
*/
class DomainsCommand extends ObjectListCommand
{
protected $objectClass = \App\Domain::class;
protected $objectName = 'domain';
protected $objectTitle = 'namespace';
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Apr 24, 1:42 PM (1 d, 6 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18809598
Default Alt Text
DomainsCommand.php (638 B)

Event Timeline