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

Commit

Permalink
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/Cloud/Decorator/HtmlTag.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ class HtmlTag extends AbstractTag
/**
* Maximum fontsize
*
* @var integer
* @var int
*/
protected $maxFontSize = 20;

/**
* Minimum fontsize
*
* @var integer
* @var int
*/
protected $minFontSize = 10;

Expand Down Expand Up @@ -152,7 +152,7 @@ public function getHTMLTags()
/**
* Set maximum font size
*
* @param integer $maxFontSize
* @param int $maxFontSize
* @throws InvalidArgumentException When fontsize is not numeric
* @return HTMLTag
*/
Expand Down
4 changes: 2 additions & 2 deletions src/ItemList.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class ItemList implements Countable, SeekableIterator, ArrayAccess
/**
* Count all items
*
* @return integer
* @return int
*/
public function count()
{
Expand Down Expand Up @@ -97,7 +97,7 @@ public function spreadWeightValues(array $values)
/**
* Seek to an absolute position
*
* @param integer $index
* @param int $index
* @throws OutOfBoundsException When the seek position is invalid
* @return void
*/
Expand Down

0 comments on commit e1de8ec

Please sign in to comment.