Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove version in internal annotation #829

Merged
merged 1 commit into from
Dec 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/CacheWarmer/HydratorCacheWarmer.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* In the process of generating hydrators the cache for all the metadata is primed also,
* since this information is necessary to build the hydrators in the first place.
*
* @internal since version 4.4
* @internal
*
* @psalm-suppress ContainerDependency
*/
Expand Down
2 changes: 1 addition & 1 deletion src/CacheWarmer/PersistentCollectionCacheWarmer.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* In the process of generating persistent collections the cache for all the metadata is primed also,
* since this information is necessary to build the persistent collections in the first place.
*
* @internal since version 4.4
* @internal
*
* @psalm-suppress ContainerDependency
*/
Expand Down
2 changes: 1 addition & 1 deletion src/CacheWarmer/ProxyCacheWarmer.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* In the process of generating proxies the cache for all the metadata is primed also,
* since this information is necessary to build the proxies in the first place.
*
* @internal since version 4.4
* @internal
*
* @psalm-suppress ContainerDependency
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Command/ClearMetadataCacheDoctrineODMCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
/**
* Command to clear the metadata cache of the various cache drivers.
*
* @internal since version 4.7.0
* @internal
*/
final class ClearMetadataCacheDoctrineODMCommand extends MetadataCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/CreateSchemaDoctrineODMCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* Command to create the database schema for a set of classes based on their
* mappings.
*
* @internal since version 4.7.0
* @internal
*/
final class CreateSchemaDoctrineODMCommand extends CreateCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/DoctrineODMCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
/**
* Base class for Doctrine ODM console commands to extend.
*
* @internal since version 4.4.0
* @internal
*/
abstract class DoctrineODMCommand extends Command
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/DropSchemaDoctrineODMCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* Command to drop the database schema for a set of classes based on their
* mappings.
*
* @internal since version 4.7.0
* @internal
*/
final class DropSchemaDoctrineODMCommand extends DropCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/GenerateHydratorsDoctrineODMCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
/**
* Generate the Doctrine ORM document hydrators to your cache directory.
*
* @internal since version 4.7.0
* @internal
*/
final class GenerateHydratorsDoctrineODMCommand extends GenerateHydratorsCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/GenerateProxiesDoctrineODMCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
/**
* Generate the Doctrine ORM document proxies to your cache directory.
*
* @internal since version 4.7.0
* @internal
*/
final class GenerateProxiesDoctrineODMCommand extends GenerateProxiesCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/InfoDoctrineODMCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* Show information about mapped documents
*
* @internal since version 4.7.0
* @internal
*/
final class InfoDoctrineODMCommand extends DoctrineODMCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/LoadDataFixturesDoctrineODMCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* Load data fixtures from bundles.
*
* @internal since version 4.7.0
* @internal
*/
final class LoadDataFixturesDoctrineODMCommand extends DoctrineODMCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/QueryDoctrineODMCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
/**
* Execute a Doctrine MongoDB ODM query and output the results.
*
* @internal since version 4.7.0
* @internal
*/
final class QueryDoctrineODMCommand extends QueryCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/ShardDoctrineODMCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* Command to shard database collections for a set of classes based on their
* mappings.
*
* @internal since version 4.7.0
* @internal
*/
final class ShardDoctrineODMCommand extends ShardCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/UpdateSchemaDoctrineODMCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* Command to update the database schema for a set of classes based on their
* mappings.
*
* @internal since version 4.7.0
* @internal
*/
final class UpdateSchemaDoctrineODMCommand extends UpdateCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/DataCollector/CommandDataCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
use function MongoDB\BSON\fromPHP;
use function MongoDB\BSON\toCanonicalExtendedJSON;

/** @internal since version 4.7.0 */
/** @internal */
final class CommandDataCollector extends DataCollector
{
public function __construct(private CommandLogger $commandLogger)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
use function mkdir;
use function sprintf;

/** @internal since version 4.7.0 */
/** @internal */
final class CreateProxyDirectoryPass implements CompilerPassInterface
{
public function process(ContainerBuilder $container): void
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* Class for Symfony bundles to configure mappings for model classes not in the
* automapped folder.
*
* @internal since version 4.7.0
* @internal
*/
final class DoctrineMongoDBMappingsPass extends RegisterMappingsPass
{
Expand Down
2 changes: 1 addition & 1 deletion src/DependencyInjection/Compiler/FixturesCompilerPass.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Reference;

/** @internal since version 4.7.0 */
/** @internal */
final class FixturesCompilerPass implements CompilerPassInterface
{
public const FIXTURE_TAG = 'doctrine.fixture.odm.mongodb';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
use function array_keys;
use function array_map;

/** @internal since version 4.7.0 */
/** @internal */
final class ServiceRepositoryCompilerPass implements CompilerPassInterface
{
public const REPOSITORY_SERVICE_TAG = 'doctrine_mongodb.odm.repository_service';
Expand Down