Skip to content

Commit c2c0725

Browse files
committed
[!!!TASK] Make all classes final
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.
1 parent 9730461 commit c2c0725

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Markdown/DependencyInjection/MarkdownExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
use function dirname;
2424

25-
class MarkdownExtension extends Extension implements PrependExtensionInterface, CompilerPassInterface
25+
final class MarkdownExtension extends Extension implements PrependExtensionInterface, CompilerPassInterface
2626
{
2727
/** @param mixed[] $configs */
2828
public function load(array $configs, ContainerBuilder $container): void

0 commit comments

Comments
 (0)