Skip to content

Commit

Permalink
[!!!TASK] Make all classes final
Browse files Browse the repository at this point in the history
This library has a very large number of extension points via
interfaces and abstract classes. All other classes should not
be extended by users and shall theirfor be marked as final.

There are a few classes left that should also be marked as final
but those require some extra attention.
  • Loading branch information
jaapio committed Jan 21, 2024
1 parent 9730461 commit c2c0725
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Markdown/DependencyInjection/MarkdownExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

use function dirname;

class MarkdownExtension extends Extension implements PrependExtensionInterface, CompilerPassInterface
final class MarkdownExtension extends Extension implements PrependExtensionInterface, CompilerPassInterface
{
/** @param mixed[] $configs */
public function load(array $configs, ContainerBuilder $container): void
Expand Down

0 comments on commit c2c0725

Please sign in to comment.