Changeset View
Changeset View
Standalone View
Standalone View
src/applications/nuance/storage/NuanceItem.php
| Show All 13 Lines | final class NuanceItem | ||||
| protected $ownerPHID; | protected $ownerPHID; | ||||
| protected $requestorPHID; | protected $requestorPHID; | ||||
| protected $sourcePHID; | protected $sourcePHID; | ||||
| protected $sourceLabel; | protected $sourceLabel; | ||||
| protected $data = array(); | protected $data = array(); | ||||
| protected $mailKey; | protected $mailKey; | ||||
| protected $dateNuanced; | protected $dateNuanced; | ||||
| private $source = self::ATTACHABLE; | |||||
| public static function initializeNewItem() { | public static function initializeNewItem() { | ||||
| return id(new NuanceItem()) | return id(new NuanceItem()) | ||||
| ->setDateNuanced(time()) | ->setDateNuanced(time()) | ||||
| ->setStatus(self::STATUS_OPEN); | ->setStatus(self::STATUS_OPEN); | ||||
| } | } | ||||
| protected function getConfiguration() { | protected function getConfiguration() { | ||||
| return array( | return array( | ||||
| ▲ Show 20 Lines • Show All 142 Lines • Show Last 20 Lines | |||||