Skip to content

Commit

Permalink
Merge pull request #760 from mynameisbogdan/feature/remove-final-to-u…
Browse files Browse the repository at this point in the history
…se-lazy

remove final from drivers
  • Loading branch information
mlocati committed Sep 30, 2021
2 parents d8c64eb + 58e62cd commit a66bee6
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 a66bee6

Please sign in to comment.