Skip to content

Commit ac01522

Browse files
committed
Merge branch '2.7' into 2.8
* 2.7: fixed @return when returning this or static override property constraints in child class [Console] improved code coverage of Command class Only count on arrays or countables to avoid warnings in PHP 7.2
2 parents 2c28845 + 92e0fbd commit ac01522

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Profiler/Profile.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public function getToken()
7676
/**
7777
* Sets the parent token.
7878
*
79-
* @param Profile $parent The parent Profile
79+
* @param Profile $parent
8080
*/
8181
public function setParent(Profile $parent)
8282
{
@@ -86,7 +86,7 @@ public function setParent(Profile $parent)
8686
/**
8787
* Returns the parent profile.
8888
*
89-
* @return Profile The parent profile
89+
* @return self
9090
*/
9191
public function getParent()
9292
{
@@ -191,7 +191,7 @@ public function getStatusCode()
191191
/**
192192
* Finds children profilers.
193193
*
194-
* @return Profile[] An array of Profile
194+
* @return self[]
195195
*/
196196
public function getChildren()
197197
{
@@ -201,7 +201,7 @@ public function getChildren()
201201
/**
202202
* Sets children profiler.
203203
*
204-
* @param Profile[] $children An array of Profile
204+
* @param Profile[] $children
205205
*/
206206
public function setChildren(array $children)
207207
{
@@ -214,7 +214,7 @@ public function setChildren(array $children)
214214
/**
215215
* Adds the child token.
216216
*
217-
* @param Profile $child The child Profile
217+
* @param Profile $child
218218
*/
219219
public function addChild(Profile $child)
220220
{

0 commit comments

Comments
 (0)