Skip to content

Commit f64a8d9

Browse files
committed
Merge branch 'master' of github.com:laracasts/flash
2 parents b25241f + 695e31c commit f64a8d9

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ php:
99
- 7.1
1010
- 7.2
1111
- 7.3
12+
- 7.4
13+
- 8.0
14+
- 8.1
1215
- hhvm
1316

1417
before_script:

src/Laracasts/Flash/Message.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ public function update($attributes = [])
7373
* @param mixed $offset
7474
* @return bool
7575
*/
76+
#[\ReturnTypeWillChange]
7677
public function offsetExists($offset)
7778
{
7879
return isset($this->$offset);
@@ -84,6 +85,7 @@ public function offsetExists($offset)
8485
* @param mixed $offset
8586
* @return mixed
8687
*/
88+
#[\ReturnTypeWillChange]
8789
public function offsetGet($offset)
8890
{
8991
return $this->$offset;
@@ -95,6 +97,7 @@ public function offsetGet($offset)
9597
* @param mixed $offset
9698
* @return void
9799
*/
100+
#[\ReturnTypeWillChange]
98101
public function offsetSet($offset, $value)
99102
{
100103
$this->$offset = $value;
@@ -106,6 +109,7 @@ public function offsetSet($offset, $value)
106109
* @param mixed $offset
107110
* @return void
108111
*/
112+
#[\ReturnTypeWillChange]
109113
public function offsetUnset($offset)
110114
{
111115
//

0 commit comments

Comments
 (0)