Page MenuHomePhorge

ObjectCommand.php
No OneTemporary

Authored By
Unknown
Size
1 KB
Referenced Files
None
Subscribers
None

ObjectCommand.php

<?php
namespace App\Console;
abstract class ObjectCommand extends Command
{
/**
* Specify a command prefix, if any.
*
* For example, \App\Console\Commands\Scalpel\User\CreateCommand uses prefix 'scalpel'.
*
* @var string
*/
protected $commandPrefix = '';
/**
* The object class that we are operating on, for example \App\User::class
*
* @var string
*/
protected $objectClass;
/**
* The (simple) object name, such as 'domain' or 'user'. Corresponds with the mandatory command-line option
* to identify the object from its corresponding model.
*
* @var string
*/
protected $objectName;
/**
* The plural of the object name, if something specific (goose -> geese).
*
* @var string
*/
protected $objectNamePlural;
/**
* A column name other than the primary key can be used to identify an object, such as 'email' for users,
* 'namespace' for domains, and 'title' for SKUs.
*
* @var string
*/
protected $objectTitle;
}

File Metadata

Mime Type
text/x-php
Expires
Sat, Apr 4, 8:31 AM (2 w, 3 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
84/8d/641a3d47de2ca6933c8fac0a221d
Default Alt Text
ObjectCommand.php (1 KB)

Event Timeline