Skip to content

Commit 0ad86d1

Browse files
committed
drop support for PHP 8.3
1 parent 647a5ed commit 0ad86d1

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches-ignore: [master]
66

77
env:
8-
PHP_LOWEST: '8.3'
8+
PHP_LOWEST: '8.4'
99
PHP_LATEST: '8.5'
1010

1111
jobs:

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
],
2525
"homepage": "https://github.com/jrmajor/laravel-fluent",
2626
"require": {
27-
"php": "8.3 - 8.5",
27+
"php": "8.4 - 8.5",
2828
"jrmajor/fluent": "^1.0",
2929
"laravel/framework": "^11.0 || ^12.0"
3030
},

composer.lock

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

src/FluentTranslator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ private function loadFtl(string $locale, string $group): ?FluentBundle
104104
return null;
105105
}
106106

107-
return (new FluentBundle($locale, ...$this->bundleOptions))
107+
return new FluentBundle($locale, ...$this->bundleOptions)
108108
->addFtl($this->files->get($path))
109109
->addFunctions($this->functions);
110110
}

0 commit comments

Comments
 (0)