Skip to content

Commit

Permalink
1.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
rawilk committed Jul 23, 2020
1 parent d9cb2ea commit e6c5fbe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `laravel-printing` will be documented in this file.

## 1.1.6 - 2020-07-23
### Changed
- Remove `int` parameter type hint on `PrintNodePrintJob` `id` setter.

## 1.1.5 - 2020-07-22

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/Drivers/PrintNode/Entity/PrintNodePrintJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class PrintNodePrintJob extends PrintNodeEntity
{
public function setId(int $id): self
public function setId($id): self
{
$this->id = $id;

Expand Down

0 comments on commit e6c5fbe

Please sign in to comment.