Skip to content

Commit 481bc10

Browse files
Cleanup @return annotations
1 parent 9b58f23 commit 481bc10

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

FileBag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function add(array $files = [])
6767
*
6868
* @param array|UploadedFile $file A (multi-dimensional) array of uploaded file information
6969
*
70-
* @return UploadedFile[]|UploadedFile|null A (multi-dimensional) array of UploadedFile instances
70+
* @return UploadedFile[]|UploadedFile|null
7171
*/
7272
protected function convertFileInformation($file)
7373
{

HeaderBag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ public function removeCacheControlDirective(string $key)
250250
/**
251251
* Returns an iterator for headers.
252252
*
253-
* @return \ArrayIterator An \ArrayIterator instance
253+
* @return \ArrayIterator
254254
*/
255255
#[\ReturnTypeWillChange]
256256
public function getIterator()

ParameterBag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ public function filter(string $key, $default = null, int $filter = \FILTER_DEFAU
205205
/**
206206
* Returns an iterator for parameters.
207207
*
208-
* @return \ArrayIterator An \ArrayIterator instance
208+
* @return \ArrayIterator
209209
*/
210210
#[\ReturnTypeWillChange]
211211
public function getIterator()

Session/Attribute/AttributeBag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public function clear()
129129
/**
130130
* Returns an iterator for attributes.
131131
*
132-
* @return \ArrayIterator An \ArrayIterator instance
132+
* @return \ArrayIterator
133133
*/
134134
#[\ReturnTypeWillChange]
135135
public function getIterator()

Session/Session.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public function isStarted()
126126
/**
127127
* Returns an iterator for attributes.
128128
*
129-
* @return \ArrayIterator An \ArrayIterator instance
129+
* @return \ArrayIterator
130130
*/
131131
#[\ReturnTypeWillChange]
132132
public function getIterator()

0 commit comments

Comments
 (0)