File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -45,3 +45,6 @@ parameters:
4545 - message : " #^Cannot access offset 'requestTag' on mixed\\ .$#"
4646 count : 1
4747 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)
111111 return $ this ->increments ($ column );
112112 }
113113
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+
114123 /**
115124 * @inheritDoc
116125 * @return UuidColumnDefinition
You can’t perform that action at this time.
0 commit comments