Skip to content

Commit

Permalink
Added bleeding edge before update phpstan to version 2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentmuller committed Nov 12, 2024
1 parent 59f67a7 commit 7274278
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 31 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Unreleased

- Added bleeding edge before update `phpstan` to version 2.0.
- Added badges to `README.md`.
- Updated Symfony to version 7.1.7.
- Create `.symfony.insight.yaml` file.
Expand Down
60 changes: 30 additions & 30 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ parameters:
- message: '#Variable property access#'
-
identifier: missingType.iterableValue

includes:
- vendor/phpstan/phpstan/conf/bleedingEdge.neon
2 changes: 1 addition & 1 deletion src/Highcharts/AbstractChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ abstract protected function getChartClass(): string;
*/
protected function getRenderTo(): string
{
return (string) ($this->chart->renderTo ?? 'chart');
return (string) ($this->chart['renderTo'] ?? 'chart');
}

/**
Expand Down

0 comments on commit 7274278

Please sign in to comment.