Skip to content

Commit

Permalink
Merge pull request #37 from r-martins/patch-1
Browse files Browse the repository at this point in the history
Remove final from private magic method
  • Loading branch information
nekudo authored Nov 8, 2021
2 parents 5e6a756 + 5d9d512 commit 3a1cecc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Application/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ protected function __construct()
// singleton construct required this method to be protected/private
}

final protected function __clone()
protected function __clone()
{
// singleton construct required this method to be protected/private
}
Expand Down

0 comments on commit 3a1cecc

Please sign in to comment.