Skip to content
This repository was archived by the owner on Jan 31, 2020. It is now read-only.

Commit 6ec0518

Browse files
committed
Fixes DocBlocks in HeadMeta helper
1 parent dfcbbed commit 6ec0518

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

src/Helper/HeadMeta.php

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ protected function normalizeType($type)
322322
/**
323323
* Determine if item is valid
324324
*
325-
* @param mixed $item
325+
* @param stdClass $item
326326
* @return bool
327327
*/
328328
protected function isValid($item)
@@ -366,8 +366,8 @@ protected function isValid($item)
366366
/**
367367
* Append
368368
*
369-
* @param object $value
370-
* @return void
369+
* @param stdClass $value
370+
* @return View\Helper\Placeholder\Container\AbstractContainer
371371
* @throws Exception\InvalidArgumentException
372372
*/
373373
public function append($value)
@@ -387,7 +387,6 @@ public function append($value)
387387
* @param string|int $index
388388
* @param string $value
389389
* @throws Exception\InvalidArgumentException
390-
* @return void
391390
*/
392391
public function offsetSet($index, $value)
393392
{
@@ -405,7 +404,6 @@ public function offsetSet($index, $value)
405404
*
406405
* @param string|int $index
407406
* @throws Exception\InvalidArgumentException
408-
* @return void
409407
*/
410408
public function offsetUnset($index)
411409
{
@@ -419,9 +417,9 @@ public function offsetUnset($index)
419417
/**
420418
* Prepend
421419
*
422-
* @param object $value
420+
* @param stdClass $value
423421
* @throws Exception\InvalidArgumentException
424-
* @return void
422+
* @return View\Helper\Placeholder\Container\AbstractContainer
425423
*/
426424
public function prepend($value)
427425
{
@@ -437,9 +435,9 @@ public function prepend($value)
437435
/**
438436
* Set
439437
*
440-
* @param object $value
438+
* @param stdClass $value
441439
* @throws Exception\InvalidArgumentException
442-
* @return void
440+
* @return View\Helper\Placeholder\Container\AbstractContainer
443441
*/
444442
public function set($value)
445443
{

0 commit comments

Comments
 (0)