Skip to content

Commit

Permalink
Merge branch 'hotfix/wip-stubs'
Browse files Browse the repository at this point in the history
  • Loading branch information
leandrocfe committed Jan 12, 2024
2 parents 3d02b7f + cfa1c86 commit 399aca4
Show file tree
Hide file tree
Showing 43 changed files with 43 additions and 43 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class BlogPostsChart extends ApexChartWidget
*
* @var string
*/
protected static string $chartId = 'blogPostsChart';
protected static ?string $chartId = 'blogPostsChart';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion examples/Area/BasicAreaChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class BasicAreaChart extends ApexChartWidget
/**
* Chart Id
*/
protected static string $chartId = 'basicAreaChart';
protected static ?string $chartId = 'basicAreaChart';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion examples/Bar/BasicBarChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class BasicBarChart extends ApexChartWidget
/**
* Chart Id
*/
protected static string $chartId = 'basicBarChart';
protected static ?string $chartId = 'basicBarChart';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion examples/Boxplot/BasicBoxPlotChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class BasicBoxPlotChart extends ApexChartWidget
/**
* Chart Id
*/
protected static string $chartId = 'basicBoxPlotChart';
protected static ?string $chartId = 'basicBoxPlotChart';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion examples/Bubble/BasicBubbleChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class BasicBubbleChart extends ApexChartWidget
/**
* Chart Id
*/
protected static string $chartId = 'basicBubbleChart';
protected static ?string $chartId = 'basicBubbleChart';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion examples/Candlestick/BasicCandlestickChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class BasicCandlestickChart extends ApexChartWidget
/**
* Chart Id
*/
protected static string $chartId = 'basicCandlestickChart';
protected static ?string $chartId = 'basicCandlestickChart';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion examples/Column/BasicColumnChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class BasicColumnChart extends ApexChartWidget
/**
* Chart Id
*/
protected static string $chartId = 'basicColumnChart';
protected static ?string $chartId = 'basicColumnChart';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion examples/Column/ColumnChartWithAnnotations.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class ColumnChartWithAnnotations extends ApexChartWidget
/**
* Chart Id
*/
protected static string $chartId = 'columnChartWithAnnotations';
protected static ?string $chartId = 'columnChartWithAnnotations';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion examples/Column/GradientColumnChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class GradientColumnChart extends ApexChartWidget
/**
* Chart Id
*/
protected static string $chartId = 'gradientColumnChart';
protected static ?string $chartId = 'gradientColumnChart';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion examples/Column/RoundedColumnChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class RoundedColumnChart extends ApexChartWidget
/**
* Chart Id
*/
protected static string $chartId = 'roundedColumnChart';
protected static ?string $chartId = 'roundedColumnChart';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion examples/Heatmap/BasicHeatmapChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class BasicHeatmapChart extends ApexChartWidget
/**
* Chart Id
*/
protected static string $chartId = 'basicHeatmapChart';
protected static ?string $chartId = 'basicHeatmapChart';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion examples/Line/BasicLineChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class BasicLineChart extends ApexChartWidget
/**
* Chart Id
*/
protected static string $chartId = 'basicLineChart';
protected static ?string $chartId = 'basicLineChart';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion examples/Mixed/LineColumnChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class LineColumnChart extends ApexChartWidget
/**
* Chart Id
*/
protected static string $chartId = 'lineColumnChart';
protected static ?string $chartId = 'lineColumnChart';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion examples/Pie/BasicPieChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class BasicPieChart extends ApexChartWidget
/**
* Chart Id
*/
protected static string $chartId = 'basicPieChart';
protected static ?string $chartId = 'basicPieChart';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion examples/Pie/DonutChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class DonutChart extends ApexChartWidget
/**
* Chart Id
*/
protected static string $chartId = 'donutChart';
protected static ?string $chartId = 'donutChart';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion examples/PolarArea/BasicPolarAreaChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class BasicPolarAreaChart extends ApexChartWidget
/**
* Chart Id
*/
protected static string $chartId = 'basicPolarAreaChart';
protected static ?string $chartId = 'basicPolarAreaChart';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion examples/Radar/BasicRadarChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class BasicRadarChart extends ApexChartWidget
/**
* Chart Id
*/
protected static string $chartId = 'basicRadarChart';
protected static ?string $chartId = 'basicRadarChart';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion examples/Radialbar/BasicRadialBarChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class BasicRadialBarChart extends ApexChartWidget
/**
* Chart Id
*/
protected static string $chartId = 'basicRadialBarChart';
protected static ?string $chartId = 'basicRadialBarChart';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion examples/Radialbar/GradientCircleChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class GradientCircleChart extends ApexChartWidget
/**
* Chart Id
*/
protected static string $chartId = 'gradientCircleChart';
protected static ?string $chartId = 'gradientCircleChart';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion examples/RangeArea/BasicRangeAreaChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class BasicRangeAreaChart extends ApexChartWidget
/**
* Chart Id
*/
protected static string $chartId = 'basicRangeAreaChart';
protected static ?string $chartId = 'basicRangeAreaChart';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion examples/Scatter/BasicScatterChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class BasicScatterChart extends ApexChartWidget
/**
* Chart Id
*/
protected static string $chartId = 'basicScatterChart';
protected static ?string $chartId = 'basicScatterChart';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion examples/TimelineRangeBars/BasicTimelineRangeBarsChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class BasicTimelineRangeBarsChart extends ApexChartWidget
/**
* Chart Id
*/
protected static string $chartId = 'basicTimelineRangeBarsChart';
protected static ?string $chartId = 'basicTimelineRangeBarsChart';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion examples/Treemap/BasicTreemapChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class BasicTreemapChart extends ApexChartWidget
/**
* Chart Id
*/
protected static string $chartId = 'basicTreemapChart';
protected static ?string $chartId = 'basicTreemapChart';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion stubs/Area.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class $CLASS_NAME$ extends ApexChartWidget
*
* @var string
*/
protected static string $chartId = '$CHART_ID$';
protected static ?string $chartId = '$CHART_ID$';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion stubs/Bar.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class $CLASS_NAME$ extends ApexChartWidget
*
* @var string
*/
protected static string $chartId = '$CHART_ID$';
protected static ?string $chartId = '$CHART_ID$';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion stubs/Boxplot.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class $CLASS_NAME$ extends ApexChartWidget
*
* @var string
*/
protected static string $chartId = '$CHART_ID$';
protected static ?string $chartId = '$CHART_ID$';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion stubs/Bubble.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class $CLASS_NAME$ extends ApexChartWidget
*
* @var string
*/
protected static string $chartId = '$CHART_ID$';
protected static ?string $chartId = '$CHART_ID$';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion stubs/Candlestick.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class $CLASS_NAME$ extends ApexChartWidget
*
* @var string
*/
protected static string $chartId = '$CHART_ID$';
protected static ?string $chartId = '$CHART_ID$';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion stubs/Column.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class $CLASS_NAME$ extends ApexChartWidget
*
* @var string
*/
protected static string $chartId = '$CHART_ID$';
protected static ?string $chartId = '$CHART_ID$';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion stubs/Donut.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class $CLASS_NAME$ extends ApexChartWidget
*
* @var string
*/
protected static string $chartId = '$CHART_ID$';
protected static ?string $chartId = '$CHART_ID$';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion stubs/Empty.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class $CLASS_NAME$ extends ApexChartWidget
*
* @var string
*/
protected static string $chartId = '$CHART_ID$';
protected static ?string $chartId = '$CHART_ID$';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion stubs/Funnel.stub
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class $CLASS_NAME$ extends ApexChartWidget
*
* @var string
*/
protected static string $chartId = '$CHART_ID$';
protected static ?string $chartId = '$CHART_ID$';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion stubs/Heatmap.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class $CLASS_NAME$ extends ApexChartWidget
*
* @var string
*/
protected static string $chartId = '$CHART_ID$';
protected static ?string $chartId = '$CHART_ID$';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion stubs/Line.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class $CLASS_NAME$ extends ApexChartWidget
*
* @var string
*/
protected static string $chartId = '$CHART_ID$';
protected static ?string $chartId = '$CHART_ID$';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion stubs/Mixed-LineAndColumn.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class $CLASS_NAME$ extends ApexChartWidget
*
* @var string
*/
protected static string $chartId = '$CHART_ID$';
protected static ?string $chartId = '$CHART_ID$';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion stubs/Pie.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class $CLASS_NAME$ extends ApexChartWidget
*
* @var string
*/
protected static string $chartId = '$CHART_ID$';
protected static ?string $chartId = '$CHART_ID$';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion stubs/PolarArea.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class $CLASS_NAME$ extends ApexChartWidget
*
* @var string
*/
protected static string $chartId = '$CHART_ID$';
protected static ?string $chartId = '$CHART_ID$';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion stubs/Radar.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class $CLASS_NAME$ extends ApexChartWidget
*
* @var string
*/
protected static string $chartId = '$CHART_ID$';
protected static ?string $chartId = '$CHART_ID$';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion stubs/Radialbar.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class $CLASS_NAME$ extends ApexChartWidget
*
* @var string
*/
protected static string $chartId = '$CHART_ID$';
protected static ?string $chartId = '$CHART_ID$';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion stubs/RangeArea.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class $CLASS_NAME$ extends ApexChartWidget
*
* @var string
*/
protected static string $chartId = '$CHART_ID$';
protected static ?string $chartId = '$CHART_ID$';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion stubs/Scatter.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class $CLASS_NAME$ extends ApexChartWidget
*
* @var string
*/
protected static string $chartId = '$CHART_ID$';
protected static ?string $chartId = '$CHART_ID$';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion stubs/TimelineRangeBars.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class $CLASS_NAME$ extends ApexChartWidget
*
* @var string
*/
protected static string $chartId = '$CHART_ID$';
protected static ?string $chartId = '$CHART_ID$';

/**
* Widget Title
Expand Down
2 changes: 1 addition & 1 deletion stubs/Treemap.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class $CLASS_NAME$ extends ApexChartWidget
*
* @var string
*/
protected static string $chartId = '$CHART_ID$';
protected static ?string $chartId = '$CHART_ID$';

/**
* Widget Title
Expand Down

0 comments on commit 399aca4

Please sign in to comment.