File tree 3 files changed +22
-0
lines changed
3 files changed +22
-0
lines changed Original file line number Diff line number Diff line change
1
+ # v8.1.3 (2024-06-24)
2
+
3
+ Fixed
4
+ - phpstan error for string('column', 'MAX') (#223 )
5
+
6
+ # v8.1.2 (2024-06-10)
7
+
8
+ Fixed
9
+ - updateOrInsert signature change in 11.10 (#216 )
10
+
1
11
# v8.1.1 (2024-06-03)
2
12
3
13
Fixed
Original file line number Diff line number Diff line change @@ -45,3 +45,6 @@ parameters:
45
45
- message : " #^Cannot access offset 'requestTag' on mixed\\ .$#"
46
46
count : 1
47
47
path : src/Connection.php
48
+ - message : " #^Parameter \\ #2 \\ $length of method Illuminate\\\\ Database\\\\ Schema\\\\ Blueprint\\ :\\ :string\\ (\\ ) expects int\\ |null, int\\ |string\\ |null given\\ .$#"
49
+ count : 1
50
+ path : src/Schema/Blueprint.php
Original file line number Diff line number Diff line change @@ -111,6 +111,15 @@ public function tinyIncrements($column)
111
111
return $ this ->increments ($ column );
112
112
}
113
113
114
+ /**
115
+ * @inheritDoc
116
+ * @param int|'max'|null $length add support for 'max'
117
+ */
118
+ public function string ($ column , $ length = null )
119
+ {
120
+ return parent ::string ($ column , $ length );
121
+ }
122
+
114
123
/**
115
124
* @inheritDoc
116
125
* @return UuidColumnDefinition
You can’t perform that action at this time.
0 commit comments