Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# v8.1.3 (2024-06-24)

Fixed
- phpstan error for string('column', 'MAX') (#223)

# v8.1.2 (2024-06-10)

Fixed
- updateOrInsert signature change in 11.10 (#216)

# v8.1.1 (2024-06-03)

Fixed
Expand Down
3 changes: 3 additions & 0 deletions phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,6 @@ parameters:
- message: "#^Cannot access offset 'requestTag' on mixed\\.$#"
count: 1
path: src/Connection.php
- message: "#^Parameter \\#2 \\$length of method Illuminate\\\\Database\\\\Schema\\\\Blueprint\\:\\:string\\(\\) expects int\\|null, int\\|string\\|null given\\.$#"
count: 1
path: src/Schema/Blueprint.php
9 changes: 9 additions & 0 deletions src/Schema/Blueprint.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,15 @@ public function tinyIncrements($column)
return $this->increments($column);
}

/**
* @inheritDoc
* @param int|'max'|null $length add support for 'max'
*/
public function string($column, $length = null)
{
return parent::string($column, $length);
}

/**
* @inheritDoc
* @return UuidColumnDefinition
Expand Down