Skip to content

Commit

Permalink
Mark the DI extension and the Configuration classes as internal
Browse files Browse the repository at this point in the history
Those classes are meant to be used only as implementation of the bundle
semantic configuration, not directly.
  • Loading branch information
stof committed Jun 10, 2024
1 parent 9f7023e commit 224a7ac
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
use Symfony\Component\Config\Definition\ConfigurationInterface;

/**
* @internal
*/
class Configuration implements ConfigurationInterface
{
public function getConfigTreeBuilder(): TreeBuilder
Expand Down
3 changes: 3 additions & 0 deletions src/DependencyInjection/StofDoctrineExtensionsExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\ContainerBuilder;

/**
* @internal
*/
class StofDoctrineExtensionsExtension extends Extension
{
private const LISTENER_EVENTS = array(
Expand Down

0 comments on commit 224a7ac

Please sign in to comment.