File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ AWS Lambda change log
33
44## ?.?.? / ????-??-??
55
6+ * Fixed issue #29 : Implicitly marking parameter as nullable is deprecated
7+ (@thekid )
8+
69## 7.0.0 / 2026-02-14
710
811This major release migrates to Amazon Linux 2023. Amazon Linux 2 end of
Original file line number Diff line number Diff line change 4444 * Packaging will always include the `vendor` directory automatically.
4545 */
4646class Runner {
47- const PHP_RELEASES = 'https://www.php.net/releases/ ' ;
47+ const PHP_RELEASES = 'https://www.php.net/releases/ ' ;
4848
4949 /** Fetches JSON for a given URL */
5050 private static function fetch (string $ query ) {
5151 return Json::read (new StreamInput ((new HttpConnection (self ::PHP_RELEASES .'? ' .$ query ))->get ()->in ()));
5252 }
5353
5454 /** Resolves the PHP version */
55- private static function resolve (string $ version = null ): string {
55+ private static function resolve (? string $ version = null ): string {
5656 if (null === $ version ) {
5757 $ select = ['version ' => PHP_VERSION ];
5858 } else if ('latest ' === $ version ) {
You can’t perform that action at this time.
0 commit comments