Skip to content

Commit ba7040d

Browse files
committed
Release v1.2.3: php-cs-fixer alignment in LibreOfficeBinaryLocator.
1 parent 199ad43 commit ba7040d

3 files changed

Lines changed: 17 additions & 2 deletions

File tree

demo/symfony8/composer.lock

Lines changed: 8 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
88
## Table of contents
99

1010
- [[Unreleased]](#unreleased)
11+
- [[1.2.3] - 2026-08-04](#123-2026-08-04)
1112
- [[1.2.2] - 2026-07-29](#122-2026-07-29)
1213
- [[1.2.1] - 2026-07-22](#121-2026-07-22)
1314
- [[1.2.0] - 2026-07-22](#120-2026-07-22)
@@ -17,6 +18,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
1718

1819
## [Unreleased]
1920

21+
## [1.2.3] - 2026-08-04
22+
23+
### Fixed
24+
- **CI:** php-cs-fixer alignment in `LibreOfficeBinaryLocator::findOnPath`.
25+
26+
[1.2.3]: https://github.com/nowo-tech/WordToPdfBundle/releases/tag/v1.2.3
27+
2028
## [1.2.2] - 2026-07-29
2129

2230
### Added

src/Runtime/LibreOfficeBinaryLocator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ private function findOnPath(string $name): ?string
101101
continue;
102102
}
103103
$candidate = rtrim($dir, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR . $name;
104-
$found = $this->usableNonEmptyPath($candidate);
104+
$found = $this->usableNonEmptyPath($candidate);
105105
if ($found !== null) {
106106
return $found;
107107
}

0 commit comments

Comments
 (0)