Skip to content

Commit

Permalink
Fix PHPDoc return type and CS
Browse files Browse the repository at this point in the history
  • Loading branch information
halfpastfouram committed Sep 2, 2018
1 parent 85b07f2 commit 45ed2e7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/Options/Scales/GridLines.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

/**
* Class GridLines
*
* @package Halfpastfour\PHPChartJS\Options\Scales
*/
class GridLines implements ArraySerializableInterface, \JsonSerializable
Expand Down Expand Up @@ -125,15 +126,15 @@ function (&$value) {
}

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

/**
* @param float[] $borderDash
* @param \float[] $borderDash
*
* @return $this
*/
Expand Down Expand Up @@ -344,6 +345,8 @@ public function setOffsetGridLines($offsetGridLines)

/**
* @return string
* @throws \ReflectionException
* @throws \Zend_Reflection_Exception
*/
public function jsonSerialize()
{
Expand Down

0 comments on commit 45ed2e7

Please sign in to comment.