Skip to content

Commit

Permalink
remove final from drivers
Browse files Browse the repository at this point in the history
  • Loading branch information
mynameisbogdan committed Mar 22, 2021
1 parent b6b6315 commit 58e62cd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/Gd/Imagine.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@

/**
* Imagine implementation using the GD library.
*
* @final
*/
final class Imagine extends AbstractImagine
class Imagine extends AbstractImagine
{
/**
* Initialize the class.
Expand Down
2 changes: 2 additions & 0 deletions src/Gmagick/Imagine.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@

/**
* Imagine implementation using the Gmagick PHP extension.
*
* @final
*/
class Imagine extends AbstractImagine
{
Expand Down
4 changes: 3 additions & 1 deletion src/Imagick/Imagine.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@

/**
* Imagine implementation using the Imagick PHP extension.
*
* @final
*/
final class Imagine extends AbstractImagine
class Imagine extends AbstractImagine
{
/**
* @throws \Imagine\Exception\RuntimeException
Expand Down

0 comments on commit 58e62cd

Please sign in to comment.