[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 <?php 2 3 final class PhabricatorStoragePatch { 4 5 private $key; 6 private $fullKey; 7 private $name; 8 private $type; 9 private $after; 10 private $legacy; 11 private $dead; 12 13 public function __construct(array $dict) { 14 $this->key = $dict['key']; 15 $this->type = $dict['type']; 16 $this->fullKey = $dict['fullKey']; 17 $this->legacy = $dict['legacy']; 18 $this->name = $dict['name']; 19 $this->after = $dict['after']; 20 $this->dead = $dict['dead']; 21 } 22 23 public function getLegacy() { 24 return $this->legacy; 25 } 26 27 public function getAfter() { 28 return $this->after; 29 } 30 31 public function getType() { 32 return $this->type; 33 } 34 35 public function getName() { 36 return $this->name; 37 } 38 39 public function getFullKey() { 40 return $this->fullKey; 41 } 42 43 public function getKey() { 44 return $this->key; 45 } 46 47 public function isDead() { 48 return $this->dead; 49 } 50 51 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sun Nov 30 09:20:46 2014 | Cross-referenced by PHPXref 0.7.1 |