@@ -221,7 +221,7 @@ |
||
221 | 221 | * @param \POData\ObjectModel\ODataMediaLink $mediaLink |
222 | 222 | * @param \POData\ObjectModel\ODataMediaLink|null $editLink |
223 | 223 | */ |
224 | - private function handleMediaLinkEntry(ODataMediaLink $mediaLink, ODataMediaLink &$editLink = null) |
|
224 | + private function handleMediaLinkEntry(ODataMediaLink $mediaLink, ODataMediaLink & $editLink = null) |
|
225 | 225 | { |
226 | 226 | if ('edit-media' == $mediaLink->rel) { |
227 | 227 | $this->isMediaLinkEntry = true; |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | /** |
38 | 38 | * @param ODataEntry $payload |
39 | 39 | */ |
40 | - public function processPayload(ODataEntry &$payload) |
|
40 | + public function processPayload(ODataEntry & $payload) |
|
41 | 41 | { |
42 | 42 | assert($this->checkEntryOK($payload)); |
43 | 43 | list($sourceSet, $source) = $this->processEntryContent($payload); |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | return true; |
89 | 89 | } |
90 | 90 | |
91 | - protected function processEntryContent(ODataEntry &$content) |
|
91 | + protected function processEntryContent(ODataEntry & $content) |
|
92 | 92 | { |
93 | 93 | assert(null === $content->id || is_string($content->id), 'Entry id must be null or string'); |
94 | 94 | |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | return [$set, $result]; |
112 | 112 | } |
113 | 113 | |
114 | - protected function processFeedContent(ODataFeed &$content) |
|
114 | + protected function processFeedContent(ODataFeed & $content) |
|
115 | 115 | { |
116 | 116 | } |
117 | 117 | |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | return $keyDesc; |
161 | 161 | } |
162 | 162 | |
163 | - protected function processLink(ODataLink &$link, ResourceSet $sourceSet, $source) |
|
163 | + protected function processLink(ODataLink & $link, ResourceSet $sourceSet, $source) |
|
164 | 164 | { |
165 | 165 | $hasUrl = isset($link->url); |
166 | 166 | $hasPayload = isset($link->expandedResult); |