Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
shaunluedeke authored Nov 25, 2024
2 parents 4e9503d + ad9005e commit 1107ff6
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

All notable changes to `ssh` will be documented in this file

## 1.12.0 - 2024-11-07

### What's Changed

* Add support for PHP 8.4 by @lyrixx in https://github.com/spatie/ssh/pull/106

### New Contributors

* @lyrixx made their first contribution in https://github.com/spatie/ssh/pull/106

**Full Changelog**: https://github.com/spatie/ssh/compare/1.11.0...1.12.0

## Unreleased

* Add support for PHP 8.4

## 1.11.0 - 2024-10-18

### What's Changed
Expand Down
2 changes: 1 addition & 1 deletion src/Ssh.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Ssh

protected ?string $password = null;

public function __construct(?string $user, string $host, int $port = null, ?string $password = null)
public function __construct(?string $user, string $host, ?int $port = null, ?string $password = null)
{
$this->user = $user;

Expand Down

0 comments on commit 1107ff6

Please sign in to comment.