Skip to content

Commit

Permalink
Restore private properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Sander Muller committed Dec 14, 2018
1 parent 1358015 commit 7dac59d
Show file tree
Hide file tree
Showing 5 changed files with 77 additions and 77 deletions.
24 changes: 12 additions & 12 deletions src/Options/Scales/GridLines.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,62 +18,62 @@ class GridLines implements ArraySerializableInterface, \JsonSerializable
/**
* @var bool
*/
protected $display;
private $display;

/**
* @var string|string[]
*/
protected $color;
private $color;

/**
* @var float[]
*/
protected $borderDash;
private $borderDash;

/**
* @var float
*/
protected $borderDashOffset;
private $borderDashOffset;

/**
* @var int|int[]
*/
protected $lineWidth;
private $lineWidth;

/**
* @var bool
*/
protected $drawBorder;
private $drawBorder;

/**
* @var bool
*/
protected $drawOnChartArea;
private $drawOnChartArea;

/**
* @var bool
*/
protected $drawTicks;
private $drawTicks;

/**
* @var int
*/
protected $tickMarkLength;
private $tickMarkLength;

/**
* @var int
*/
protected $zeroLineWidth;
private $zeroLineWidth;

/**
* @var string
*/
protected $zeroLineColor;
private $zeroLineColor;

/**
* @var bool
*/
protected $offsetGridLines;
private $offsetGridLines;

/**
* @return bool
Expand Down
12 changes: 6 additions & 6 deletions src/Options/Scales/ScaleLabel.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,32 +17,32 @@ class ScaleLabel implements ArraySerializableInterface, \JsonSerializable
/**
* @var bool
*/
protected $display;
private $display;

/**
* @var string
*/
protected $labelString;
private $labelString;

/**
* @var string
*/
protected $fontColor;
private $fontColor;

/**
* @var string
*/
protected $fontFamily;
private $fontFamily;

/**
* @var int
*/
protected $fontSize;
private $fontSize;

/**
* @var string
*/
protected $fontStyle;
private $fontStyle;

/**
* @return bool
Expand Down
36 changes: 18 additions & 18 deletions src/Options/Scales/Ticks.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,92 +19,92 @@ class Ticks implements ArraySerializableInterface, \JsonSerializable
/**
* @var float
*/
protected $suggestedMin;
private $suggestedMin;

/**
* @var bool
*/
protected $beginAtZero;
private $beginAtZero;

/**
* @var float
*/
protected $stepSize;
private $stepSize;

/**
* @var bool
*/
protected $autoSkip;
private $autoSkip;

/**
* @var int
*/
protected $autoSkipPadding;
private $autoSkipPadding;

/**
* @var Expr
*/
protected $callback;
private $callback;

/**
* @var bool
*/
protected $display;
private $display;

/**
* @var string
*/
protected $fontColor;
private $fontColor;

/**
* @var string
*/
protected $fontFamily;
private $fontFamily;

/**
* @var int
*/
protected $fontSize;
private $fontSize;

/**
* @var string
*/
protected $fontStyle;
private $fontStyle;

/**
* @var int
*/
protected $labelOffset;
private $labelOffset;

/**
* @var int
*/
protected $maxRotation;
private $maxRotation;

/**
* @var int
*/
protected $minRotation;
private $minRotation;

/**
* @var bool
*/
protected $mirror;
private $mirror;

/**
* @var int
*/
protected $padding;
private $padding;

/**
* @var bool
*/
protected $reverse;
private $reverse;

/**
* @var int
*/
protected $max;
private $max;

/**
* @return float
Expand Down
18 changes: 9 additions & 9 deletions src/Options/Title.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,47 +17,47 @@ class Title implements ArraySerializableInterface, \JsonSerializable
/**
* @var bool
*/
protected $display;
private $display;

/**
* @var string
*/
protected $position;
private $position;

/**
* @var bool
*/
protected $fullWidth;
private $fullWidth;

/**
* @var int
*/
protected $fontSize;
private $fontSize;

/**
* @var string
*/
protected $fontFamily;
private $fontFamily;

/**
* @var string
*/
protected $fontColor;
private $fontColor;

/**
* @var string
*/
protected $fontStyle;
private $fontStyle;

/**
* @var int
*/
protected $padding;
private $padding;

/**
* @var string
*/
protected $text;
private $text;

/**
* @return bool
Expand Down
Loading

0 comments on commit 7dac59d

Please sign in to comment.