diff --git a/docs/changes/1.2.0.md b/docs/changes/1.2.0.md index f213e90a9..3d1ae643e 100644 --- a/docs/changes/1.2.0.md +++ b/docs/changes/1.2.0.md @@ -10,6 +10,7 @@ ## Bug fixes - Word2007 Reader: Fixed cast of spacing fixing [#729](https://github.com/PHPOffice/PHPPresentation/pull/729), [#796](https://github.com/PHPOffice/PHPPresentation/pull/796) in [#818](https://github.com/PHPOffice/PHPPresentation/pull/818) +- CI : Fixed PHPCSFixer by [@kw-pr](https://github.com/kw-pr) in [#835](https://github.com/PHPOffice/PHPPresentation/pull/835) ## Miscellaneous diff --git a/src/PhpPresentation/AbstractShape.php b/src/PhpPresentation/AbstractShape.php index bbe9de54d..f91a3b401 100644 --- a/src/PhpPresentation/AbstractShape.php +++ b/src/PhpPresentation/AbstractShape.php @@ -1,4 +1,5 @@ |ArrayObject + * @return array|ArrayObject */ public function getAllMasterSlides() { @@ -348,7 +349,7 @@ public function getAllMasterSlides() } /** - * @param array|ArrayObject $slideMasters + * @param array|ArrayObject $slideMasters */ public function setAllMasterSlides($slideMasters = []): self { diff --git a/src/PhpPresentation/PresentationProperties.php b/src/PhpPresentation/PresentationProperties.php index dce8f439d..b51155883 100644 --- a/src/PhpPresentation/PresentationProperties.php +++ b/src/PhpPresentation/PresentationProperties.php @@ -1,4 +1,5 @@