Merge pull request #4821 from oleibman/license2016

Update License
This commit is contained in:
oleibman
2026-03-05 06:21:21 +00:00
committed by GitHub
3 changed files with 2 additions and 7 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
MIT License
Copyright (c) 2019-2025 PhpSpreadsheet Authors
Copyright (c) 2019-2026 PhpSpreadsheet Authors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
+1 -1
View File
@@ -4,7 +4,7 @@
[![Code Coverage](https://coveralls.io/repos/github/PHPOffice/PhpSpreadsheet/badge.svg?branch=master)](https://coveralls.io/github/PHPOffice/PhpSpreadsheet?branch=master)
[![Total Downloads](https://img.shields.io/packagist/dt/PHPOffice/PhpSpreadsheet)](https://packagist.org/packages/phpoffice/phpspreadsheet)
[![Latest Stable Version](https://img.shields.io/github/v/release/PHPOffice/PhpSpreadsheet)](https://packagist.org/packages/phpoffice/phpspreadsheet)
[![License](https://img.shields.io/github/license/PHPOffice/PhpSpreadsheet)](https://packagist.org/packages/phpoffice/phpspreadsheet)
[![License](https://poser.pugx.org/phpoffice/phpspreadsheet/license)](https://packagist.org/packages/phpoffice/phpspreadsheet)
[![Join the chat at https://gitter.im/PHPOffice/PhpSpreadsheet](https://img.shields.io/badge/GITTER-join%20chat-green.svg)](https://gitter.im/PHPOffice/PhpSpreadsheet)
PhpSpreadsheet is a library written in pure PHP and offers a set of classes that
-5
View File
@@ -313,7 +313,6 @@ class Chart
break;
case 'scatterChart':
/** @var string $scatterStyle */
$scatterStyle = self::getAttributeString($chartDetail->scatterStyle, 'val');
$plotSer = $this->chartDataSeries($chartDetail, $chartDetailKey);
$plotSer->setPlotStyle($scatterStyle);
@@ -330,7 +329,6 @@ class Chart
break;
case 'radarChart':
/** @var string $radarStyle */
$radarStyle = self::getAttributeString($chartDetail->radarStyle, 'val');
$plotSer = $this->chartDataSeries($chartDetail, $chartDetailKey);
$plotSer->setPlotStyle($radarStyle);
@@ -1465,11 +1463,8 @@ class Chart
if (is_numeric($lineWidthTemp)) {
$lineWidth = ChartProperties::xmlToPoints($lineWidthTemp);
}
/** @var string $compoundType */
$compoundType = self::getAttributeString($sppr->ln, 'cmpd');
/** @var string $dashType */
$dashType = self::getAttributeString($sppr->ln->prstDash, 'val');
/** @var string $capType */
$capType = self::getAttributeString($sppr->ln, 'cap');
if (isset($sppr->ln->miter)) {
$joinType = ChartProperties::LINE_STYLE_JOIN_MITER;