Skip to content

Commit

Permalink
Merge branch 'master' of github.com:laracasts/flash
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreyWay committed Jan 31, 2022
2 parents b25241f + 695e31c commit f64a8d9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ php:
- 7.1
- 7.2
- 7.3
- 7.4
- 8.0
- 8.1
- hhvm

before_script:
Expand Down
4 changes: 4 additions & 0 deletions src/Laracasts/Flash/Message.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ public function update($attributes = [])
* @param mixed $offset
* @return bool
*/
#[\ReturnTypeWillChange]
public function offsetExists($offset)
{
return isset($this->$offset);
Expand All @@ -84,6 +85,7 @@ public function offsetExists($offset)
* @param mixed $offset
* @return mixed
*/
#[\ReturnTypeWillChange]
public function offsetGet($offset)
{
return $this->$offset;
Expand All @@ -95,6 +97,7 @@ public function offsetGet($offset)
* @param mixed $offset
* @return void
*/
#[\ReturnTypeWillChange]
public function offsetSet($offset, $value)
{
$this->$offset = $value;
Expand All @@ -106,6 +109,7 @@ public function offsetSet($offset, $value)
* @param mixed $offset
* @return void
*/
#[\ReturnTypeWillChange]
public function offsetUnset($offset)
{
//
Expand Down

0 comments on commit f64a8d9

Please sign in to comment.