Last native param types

This commit is contained in:
Adrien Crivelli
2024-01-03 13:05:09 +08:00
parent f1772bf396
commit a68a54e4b9
2 changed files with 2 additions and 8 deletions
+1 -2
View File
@@ -107,14 +107,13 @@ class DataSeries
/**
* Create a new DataSeries.
*
* @param null|mixed $plotType
* @param int[] $plotOrder
* @param DataSeriesValues[] $plotLabel
* @param DataSeriesValues[] $plotCategory
* @param DataSeriesValues[] $plotValues
*/
public function __construct(
$plotType = null,
null|string $plotType = null,
null|string $plotGrouping = null,
array $plotOrder = [],
array $plotLabel = [],
+1 -6
View File
@@ -394,12 +394,7 @@ class Properties
/**
* Set a Custom Property.
*
* @param string $propertyType
* 'i' : Integer
* 'f' : Floating Point
* 's' : String
* 'd' : Date/Time
* 'b' : Boolean
* @param ?string $propertyType see `self::VALID_PROPERTY_TYPE_LIST`
*
* @return $this
*/