@@ -22,11 +22,11 @@ discard block |
||
| 22 | 22 | /** |
| 23 | 23 | * @return string |
| 24 | 24 | */ |
| 25 | - public function getDisplayName(){ |
|
| 25 | + public function getDisplayName() { |
|
| 26 | 26 | return isset($this->found_props['displayname']) ? $this->found_props['displayname'] : null; |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | - public function getResourceType(){ |
|
| 29 | + public function getResourceType() { |
|
| 30 | 30 | return isset($this->found_props['resourcetype']) ? $this->found_props['resourcetype'] : null; |
| 31 | 31 | } |
| 32 | 32 | |
@@ -34,21 +34,21 @@ discard block |
||
| 34 | 34 | * @see https://tools.ietf.org/html/rfc6578 |
| 35 | 35 | * @return string |
| 36 | 36 | */ |
| 37 | - public function getSyncToken(){ |
|
| 37 | + public function getSyncToken() { |
|
| 38 | 38 | return isset($this->found_props['sync-token']) ? $this->found_props['sync-token'] : null; |
| 39 | 39 | } |
| 40 | 40 | |
| 41 | 41 | /** |
| 42 | 42 | * @return string |
| 43 | 43 | */ |
| 44 | - public function getETag(){ |
|
| 44 | + public function getETag() { |
|
| 45 | 45 | return isset($this->found_props['getetag']) ? $this->found_props['getetag'] : null; |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | /** |
| 49 | 49 | * @return string |
| 50 | 50 | */ |
| 51 | - public function getCTag(){ |
|
| 51 | + public function getCTag() { |
|
| 52 | 52 | return isset($this->found_props['getctag']) ? $this->found_props['getctag'] : null; |
| 53 | 53 | } |
| 54 | 54 | |