Skip to content

Commit

Permalink
Make flysystem exception extend throwable
Browse files Browse the repository at this point in the history
  • Loading branch information
frankdejonge committed Jan 4, 2020
1 parent 46d2308 commit 27dac0c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/FlysystemException.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

namespace League\Flysystem;

interface FlysystemException
use Throwable;

interface FlysystemException extends Throwable
{
}

2 comments on commit 27dac0c

@GrahamCampbell
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will break on PHP 5.5 and 5.6?

@frankdejonge
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, just saw CI, rolling it back now

Please sign in to comment.