Skip to content

Commit c5317b8

Browse files
committed
Update License
1 parent eecd31b commit c5317b8

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019-2025 PhpSpreadsheet Authors
3+
Copyright (c) 2019-2026 PhpSpreadsheet Authors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Code Coverage](https://coveralls.io/repos/github/PHPOffice/PhpSpreadsheet/badge.svg?branch=master)](https://coveralls.io/github/PHPOffice/PhpSpreadsheet?branch=master)
55
[![Total Downloads](https://img.shields.io/packagist/dt/PHPOffice/PhpSpreadsheet)](https://packagist.org/packages/phpoffice/phpspreadsheet)
66
[![Latest Stable Version](https://img.shields.io/github/v/release/PHPOffice/PhpSpreadsheet)](https://packagist.org/packages/phpoffice/phpspreadsheet)
7-
[![License](https://img.shields.io/github/license/PHPOffice/PhpSpreadsheet)](https://packagist.org/packages/phpoffice/phpspreadsheet)
7+
[![License](https://poser.pugx.org/phpoffice/phpspreadsheet/license)](https://packagist.org/packages/phpoffice/phpspreadsheet)
88
[![Join the chat at https://gitter.im/PHPOffice/PhpSpreadsheet](https://img.shields.io/badge/GITTER-join%20chat-green.svg)](https://gitter.im/PHPOffice/PhpSpreadsheet)
99

1010
PhpSpreadsheet is a library written in pure PHP and offers a set of classes that

src/PhpSpreadsheet/Reader/Xlsx/Chart.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,6 @@ public function readChart(SimpleXMLElement $chartElements, string $chartName): \
313313

314314
break;
315315
case 'scatterChart':
316-
/** @var string $scatterStyle */
317316
$scatterStyle = self::getAttributeString($chartDetail->scatterStyle, 'val');
318317
$plotSer = $this->chartDataSeries($chartDetail, $chartDetailKey);
319318
$plotSer->setPlotStyle($scatterStyle);
@@ -330,7 +329,6 @@ public function readChart(SimpleXMLElement $chartElements, string $chartName): \
330329

331330
break;
332331
case 'radarChart':
333-
/** @var string $radarStyle */
334332
$radarStyle = self::getAttributeString($chartDetail->radarStyle, 'val');
335333
$plotSer = $this->chartDataSeries($chartDetail, $chartDetailKey);
336334
$plotSer->setPlotStyle($radarStyle);
@@ -1465,11 +1463,8 @@ private function readLineStyle(SimpleXMLElement $chartDetail, ?ChartProperties $
14651463
if (is_numeric($lineWidthTemp)) {
14661464
$lineWidth = ChartProperties::xmlToPoints($lineWidthTemp);
14671465
}
1468-
/** @var string $compoundType */
14691466
$compoundType = self::getAttributeString($sppr->ln, 'cmpd');
1470-
/** @var string $dashType */
14711467
$dashType = self::getAttributeString($sppr->ln->prstDash, 'val');
1472-
/** @var string $capType */
14731468
$capType = self::getAttributeString($sppr->ln, 'cap');
14741469
if (isset($sppr->ln->miter)) {
14751470
$joinType = ChartProperties::LINE_STYLE_JOIN_MITER;

0 commit comments

Comments
 (0)