Changeset View
Changeset View
Standalone View
Standalone View
src/applications/nuance/storage/NuanceItem.php
| <?php | <?php | ||||
| final class NuanceItem | final class NuanceItem | ||||
| extends NuanceDAO | extends NuanceDAO | ||||
| implements | implements | ||||
| PhabricatorPolicyInterface, | PhabricatorPolicyInterface, | ||||
| PhabricatorApplicationTransactionInterface { | PhabricatorApplicationTransactionInterface { | ||||
| const STATUS_IMPORTING = 'importing'; | const STATUS_IMPORTING = 'importing'; | ||||
| const STATUS_ROUTING = 'routing'; | const STATUS_ROUTING = 'routing'; | ||||
| const STATUS_OPEN = 'open'; | const STATUS_OPEN = 'open'; | ||||
| const STATUS_ASSIGNED = 'assigned'; | |||||
| const STATUS_CLOSED = 'closed'; | const STATUS_CLOSED = 'closed'; | ||||
| protected $status; | protected $status; | ||||
| protected $ownerPHID; | protected $ownerPHID; | ||||
| protected $requestorPHID; | protected $requestorPHID; | ||||
| protected $sourcePHID; | protected $sourcePHID; | ||||
| protected $queuePHID; | protected $queuePHID; | ||||
| protected $itemType; | protected $itemType; | ||||
| ▲ Show 20 Lines • Show All 191 Lines • Show Last 20 Lines | |||||