Skip to content

Commit

Permalink
Fixed PHPDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
halfpastfouram authored and Bob Kruithof committed Sep 2, 2018
1 parent 2853aae commit 76c50e8
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 28 deletions.
8 changes: 4 additions & 4 deletions src/DataSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -223,15 +223,15 @@ public function setBorderColor($borderColor)
}

/**
* @return int|\int[]
* @return int|int[]
*/
public function getBorderWidth()
{
return $this->borderWidth;
}

/**
* @param int|\int[] $borderWidth
* @param int|int[] $borderWidth
*
* @return $this
*/
Expand Down Expand Up @@ -324,15 +324,15 @@ public function setHoverBorderColor($hoverBorderColor)
}

/**
* @return int|\int[]
* @return int|int[]
*/
public function getHoverBorderWidth()
{
return $this->hoverBorderWidth;
}

/**
* @param int|\int[] $hoverBorderWidth
* @param int|int[] $hoverBorderWidth
*
* @return $this
*/
Expand Down
20 changes: 10 additions & 10 deletions src/DataSet/LineDataSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -291,15 +291,15 @@ public function setPointBackgroundColor($pointBackgroundColor)
}

/**
* @return int|\int[]
* @return int|int[]
*/
public function getPointBorderWidth()
{
return $this->pointBorderWidth;
}

/**
* @param int|\int[] $pointBorderWidth
* @param int|int[] $pointBorderWidth
*
* @return $this
*/
Expand All @@ -311,15 +311,15 @@ public function setPointBorderWidth($pointBorderWidth)
}

/**
* @return int|\int[]
* @return int|int[]
*/
public function getPointRadius()
{
return $this->pointRadius;
}

/**
* @param int|\int[] $pointRadius
* @param int|int[] $pointRadius
*
* @return $this
*/
Expand All @@ -331,15 +331,15 @@ public function setPointRadius($pointRadius)
}

/**
* @return int|\int[]
* @return int|int[]
*/
public function getPointHoverRadius()
{
return $this->pointHoverRadius;
}

/**
* @param int|\int[] $pointHoverRadius
* @param int|int[] $pointHoverRadius
*
* @return $this
*/
Expand All @@ -351,15 +351,15 @@ public function setPointHoverRadius($pointHoverRadius)
}

/**
* @return int|\int[]
* @return int|int[]
*/
public function getPointHitRadius()
{
return $this->pointHitRadius;
}

/**
* @param int|\int[] $pointHitRadius
* @param int|int[] $pointHitRadius
*
* @return $this
*/
Expand Down Expand Up @@ -411,15 +411,15 @@ public function setPointHoverBorderColor($pointHoverBorderColor)
}

/**
* @return int|\int[]
* @return int|int[]
*/
public function getPointHoverBorderWidth()
{
return $this->pointHoverBorderWidth;
}

/**
* @param int|\int[] $pointHoverBorderWidth
* @param int|int[] $pointHoverBorderWidth
*
* @return $this
*/
Expand Down
24 changes: 12 additions & 12 deletions src/DataSet/RadarDataSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -151,15 +151,15 @@ public function setBorderCapStyle($borderCapStyle)
}

/**
* @return \int[]
* @return int[]
*/
public function getBorderDash()
{
return $this->borderDash;
}

/**
* @param \int[] $borderDash
* @param int[] $borderDash
*
* @return $this
*/
Expand Down Expand Up @@ -251,15 +251,15 @@ public function setPointBackgroundColor($pointBackgroundColor)
}

/**
* @return int|\int[]
* @return int|int[]
*/
public function getPointBorderWidth()
{
return $this->pointBorderWidth;
}

/**
* @param int|\int[] $pointBorderWidth
* @param int|int[] $pointBorderWidth
*
* @return $this
*/
Expand All @@ -271,15 +271,15 @@ public function setPointBorderWidth($pointBorderWidth)
}

/**
* @return int|\int[]
* @return int|int[]
*/
public function getPointRadius()
{
return $this->pointRadius;
}

/**
* @param int|\int[] $pointRadius
* @param int|int[] $pointRadius
*
* @return $this
*/
Expand All @@ -291,15 +291,15 @@ public function setPointRadius($pointRadius)
}

/**
* @return int|\int[]
* @return int|int[]
*/
public function getPointHoverRadius()
{
return $this->pointHoverRadius;
}

/**
* @param int|\int[] $pointHoverRadius
* @param int|int[] $pointHoverRadius
*
* @return $this
*/
Expand All @@ -311,15 +311,15 @@ public function setPointHoverRadius($pointHoverRadius)
}

/**
* @return int|\int[]
* @return int|int[]
*/
public function getHitRadius()
{
return $this->hitRadius;
}

/**
* @param int|\int[] $hitRadius
* @param int|int[] $hitRadius
*
* @return $this
*/
Expand Down Expand Up @@ -371,15 +371,15 @@ public function setPointHoverBorderColor($pointHoverBorderColor)
}

/**
* @return int|\int[]
* @return int|int[]
*/
public function getPointHoverBorderWidth()
{
return $this->pointHoverBorderWidth;
}

/**
* @param int|\int[] $pointHoverBorderWidth
* @param int|int[] $pointHoverBorderWidth
*
* @return $this
*/
Expand Down
4 changes: 2 additions & 2 deletions src/Options/Scales/GridLines.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,15 +173,15 @@ public function setBorderDashOffset($borderDashOffset)
}

/**
* @return int|\int[]
* @return int|int[]
*/
public function getLineWidth()
{
return $this->lineWidth;
}

/**
* @param int|\int[] $lineWidth
* @param int|int[] $lineWidth
*
* @return $this
*/
Expand Down

0 comments on commit 76c50e8

Please sign in to comment.