| 1 | <?php |
||
| 21 | class RemoteVettingConfiguration |
||
| 22 | { |
||
| 23 | private $publicKey; |
||
| 24 | |||
| 25 | private $location; |
||
| 26 | |||
| 27 | public function __construct($configurationSettings) |
||
| 28 | { |
||
| 29 | $this->publicKey = $configurationSettings['encryption_public_key']; |
||
| 30 | $this->location = $configurationSettings['storage_location']; |
||
| 31 | } |
||
| 32 | |||
| 33 | public function getLocation() |
||
| 37 | |||
| 38 | public function getPublicKey() |
||
| 42 | } |
||
| 43 |
Our type inference engine in quite powerful, but sometimes the code does not provide enough clues to go by. In these cases we request you to add a
@returnannotation as described here.