Skip to content

Commit

Permalink
Remove abstract keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Sep 12, 2024
1 parent a09b965 commit b199f83
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
use function dirname;
use function implode;

abstract class AbstractElementRegistry
class ElementRegistry
{
/** @var \SimpleSAML\XML\Registry\AbstractElementRegistry|null $instance */
protected static ?AbstractElementRegistry $instance = null;


/** @var array<string, string> */
protected array $registry = [];

final private function __construct()

final protected function __construct()
{
// Initialize the registry with all the elements we know
$classesDir = dirname(__FILE__, 3) . '/vendor/simplesamlphp/composer-xmlprovider-installer/classes';
Expand Down

0 comments on commit b199f83

Please sign in to comment.