Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 271a2ec

Browse filesBrowse files
committed
Address deprecations from persistence
A backwards-compatibility layer has been added to persistence to help consumers move to the new namespacing. It is based on class aliases, which means the type declaration changes should not be a BC-break: types are the same. See doctrine/persistence#71
1 parent f208367 commit 271a2ec
Copy full SHA for 271a2ec

File tree

Expand file treeCollapse file tree

75 files changed

+110
-95
lines changed
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

75 files changed

+110
-95
lines changed

‎UPGRADE.md

Copy file name to clipboardExpand all lines: UPGRADE.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Whole Doctrine\ORM\Tools\Export namespace with all its members have been depreca
4141
## Deprecated `Doctrine\ORM\Proxy\Proxy` marker interface
4242

4343
Proxy objects in Doctrine ORM 3.0 will no longer implement `Doctrine\ORM\Proxy\Proxy` nor
44-
`Doctrine\Common\Persistence\Proxy`: instead, they implement
44+
`Doctrine\Persistence\Proxy`: instead, they implement
4545
`ProxyManager\Proxy\GhostObjectInterface`.
4646

4747
These related classes have been deprecated:
@@ -435,15 +435,15 @@ above you must implement these new methods.
435435

436436
Metadata drivers have been rewritten to reuse code from Doctrine\Common. Anyone who is using the
437437
`Doctrine\ORM\Mapping\Driver\Driver` interface should instead refer to
438-
`Doctrine\Common\Persistence\Mapping\Driver\MappingDriver`. Same applies to
438+
`Doctrine\Persistence\Mapping\Driver\MappingDriver`. Same applies to
439439
`Doctrine\ORM\Mapping\Driver\AbstractFileDriver`: you should now refer to
440-
`Doctrine\Common\Persistence\Mapping\Driver\FileDriver`.
440+
`Doctrine\Persistence\Mapping\Driver\FileDriver`.
441441

442442
Also, following mapping drivers have been deprecated, please use their replacements in Doctrine\Common as listed:
443443

444-
* `Doctrine\ORM\Mapping\Driver\DriverChain` => `Doctrine\Common\Persistence\Mapping\Driver\MappingDriverChain`
445-
* `Doctrine\ORM\Mapping\Driver\PHPDriver` => `Doctrine\Common\Persistence\Mapping\Driver\PHPDriver`
446-
* `Doctrine\ORM\Mapping\Driver\StaticPHPDriver` => `Doctrine\Common\Persistence\Mapping\Driver\StaticPHPDriver`
444+
* `Doctrine\ORM\Mapping\Driver\DriverChain` => `Doctrine\Persistence\Mapping\Driver\MappingDriverChain`
445+
* `Doctrine\ORM\Mapping\Driver\PHPDriver` => `Doctrine\Persistence\Mapping\Driver\PHPDriver`
446+
* `Doctrine\ORM\Mapping\Driver\StaticPHPDriver` => `Doctrine\Persistence\Mapping\Driver\StaticPHPDriver`
447447

448448
# Upgrade to 2.2
449449

@@ -532,7 +532,7 @@ Previously EntityManager#find(null) returned null. It now throws an exception.
532532

533533
## Interface for EntityRepository
534534

535-
The EntityRepository now has an interface Doctrine\Common\Persistence\ObjectRepository. This means that your classes that override EntityRepository and extend find(), findOneBy() or findBy() must be adjusted to follow this interface.
535+
The EntityRepository now has an interface Doctrine\Persistence\ObjectRepository. This means that your classes that override EntityRepository and extend find(), findOneBy() or findBy() must be adjusted to follow this interface.
536536

537537
## AnnotationReader changes
538538

‎composer.json

Copy file name to clipboardExpand all lines: composer.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"doctrine/dbal": "^2.9.3",
2626
"doctrine/event-manager": "^1.1",
2727
"doctrine/instantiator": "^1.3",
28-
"doctrine/persistence": "^1.2",
28+
"doctrine/persistence": "^1.3@dev",
2929
"symfony/console": "^3.0|^4.0|^5.0"
3030
},
3131
"require-dev": {

‎composer.lock

Copy file name to clipboardExpand all lines: composer.lock
+14-11Lines changed: 14 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎docs/en/reference/events.rst

Copy file name to clipboardExpand all lines: docs/en/reference/events.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ A lifecycle event listener looks like the following:
418418
.. code-block:: php
419419
420420
<?php
421-
use Doctrine\Common\Persistence\Event\LifecycleEventArgs;
421+
use Doctrine\Persistence\Event\LifecycleEventArgs;
422422
423423
class MyEventListener
424424
{

‎lib/Doctrine/ORM/AbstractQuery.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/AbstractQuery.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
namespace Doctrine\ORM;
2121

22-
use Doctrine\Common\Persistence\Mapping\MappingException;
22+
use Doctrine\Persistence\Mapping\MappingException;
2323
use Doctrine\Common\Util\ClassUtils;
2424
use Doctrine\Common\Collections\Collection;
2525
use Doctrine\Common\Collections\ArrayCollection;

‎lib/Doctrine/ORM/Configuration.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/Configuration.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
use Doctrine\Common\Annotations\SimpleAnnotationReader;
2626
use Doctrine\Common\Cache\ArrayCache;
2727
use Doctrine\Common\Cache\Cache as CacheDriver;
28-
use Doctrine\Common\Persistence\Mapping\Driver\MappingDriver;
28+
use Doctrine\Persistence\Mapping\Driver\MappingDriver;
2929
use Doctrine\Common\Persistence\ObjectRepository;
3030
use Doctrine\Common\Proxy\AbstractProxyFactory;
3131
use Doctrine\ORM\Cache\CacheConfiguration;

‎lib/Doctrine/ORM/Decorator/EntityManagerDecorator.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/Decorator/EntityManagerDecorator.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
use Doctrine\ORM\Query\ResultSetMapping;
2323
use Doctrine\ORM\EntityManagerInterface;
24-
use Doctrine\Common\Persistence\ObjectManagerDecorator;
24+
use Doctrine\Persistence\ObjectManagerDecorator;
2525

2626
/**
2727
* Base class for EntityManager decorators

‎lib/Doctrine/ORM/EntityManager.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/EntityManager.php
+4-3Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
use Doctrine\ORM\Proxy\ProxyFactory;
2929
use Doctrine\ORM\Query\FilterCollection;
3030
use Doctrine\Common\Util\ClassUtils;
31+
use Doctrine\Persistence\Mapping\MappingException;
3132
use Throwable;
3233
use const E_USER_DEPRECATED;
3334
use function trigger_error;
@@ -546,9 +547,9 @@ public function getPartialReference($entityName, $identifier)
546547
*
547548
* @return void
548549
*
549-
* @throws ORMInvalidArgumentException if a non-null non-string value is given
550-
* @throws \Doctrine\Common\Persistence\Mapping\MappingException if a $entityName is given, but that entity is not
551-
* found in the mappings
550+
* @throws ORMInvalidArgumentException If a non-null non-string value is given.
551+
* @throws MappingException If a $entityName is given, but that entity is not
552+
* found in the mappings.
552553
*/
553554
public function clear($entityName = null)
554555
{

‎lib/Doctrine/ORM/EntityManagerInterface.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/EntityManagerInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
namespace Doctrine\ORM;
2121

22-
use Doctrine\Common\Persistence\ObjectManager;
22+
use Doctrine\Persistence\ObjectManager;
2323
use Doctrine\ORM\Query\ResultSetMapping;
2424

2525
/**

‎lib/Doctrine/ORM/EntityRepository.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/EntityRepository.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
use Doctrine\Common\Inflector\Inflector;
2323
use Doctrine\ORM\Query\ResultSetMappingBuilder;
24-
use Doctrine\Common\Persistence\ObjectRepository;
24+
use Doctrine\Persistence\ObjectRepository;
2525
use Doctrine\Common\Collections\Selectable;
2626
use Doctrine\Common\Collections\Criteria;
2727
use const E_USER_DEPRECATED;

‎lib/Doctrine/ORM/Event/LifecycleEventArgs.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/Event/LifecycleEventArgs.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
namespace Doctrine\ORM\Event;
2121

22-
use Doctrine\Common\Persistence\Event\LifecycleEventArgs as BaseLifecycleEventArgs;
22+
use Doctrine\Persistence\Event\LifecycleEventArgs as BaseLifecycleEventArgs;
2323

2424
/**
2525
* Lifecycle Events are triggered by the UnitOfWork during lifecycle transitions

‎lib/Doctrine/ORM/Event/LoadClassMetadataEventArgs.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/Event/LoadClassMetadataEventArgs.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
namespace Doctrine\ORM\Event;
2121

22-
use Doctrine\Common\Persistence\Event\LoadClassMetadataEventArgs as BaseLoadClassMetadataEventArgs;
22+
use Doctrine\Persistence\Event\LoadClassMetadataEventArgs as BaseLoadClassMetadataEventArgs;
2323

2424
/**
2525
* Class that holds event arguments for a loadMetadata event.

‎lib/Doctrine/ORM/Event/OnClassMetadataNotFoundEventArgs.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/Event/OnClassMetadataNotFoundEventArgs.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
namespace Doctrine\ORM\Event;
2121

22-
use Doctrine\Common\Persistence\Event\ManagerEventArgs;
22+
use Doctrine\Persistence\Event\ManagerEventArgs;
2323
use Doctrine\Common\Persistence\Mapping\ClassMetadata;
2424
use Doctrine\Common\Persistence\ObjectManager;
2525

‎lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
namespace Doctrine\ORM\Mapping;
2121

22-
use Doctrine\Common\Persistence\Mapping\AbstractClassMetadataFactory;
22+
use Doctrine\Persistence\Mapping\AbstractClassMetadataFactory;
2323
use Doctrine\Common\Persistence\Mapping\ClassMetadata as ClassMetadataInterface;
2424
use Doctrine\Common\Persistence\Mapping\ReflectionService;
2525
use Doctrine\DBAL\Platforms;

‎lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
use Doctrine\DBAL\Types\Type;
2727
use Doctrine\DBAL\Platforms\AbstractPlatform;
2828
use ReflectionClass;
29-
use Doctrine\Common\Persistence\Mapping\ClassMetadata;
29+
use Doctrine\Persistence\Mapping\ClassMetadata;
3030
use Doctrine\ORM\Cache\CacheException;
3131

3232
/**

‎lib/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
namespace Doctrine\ORM\Mapping\Driver;
2121

2222
use Doctrine\Common\Annotations\AnnotationReader;
23-
use Doctrine\Common\Persistence\Mapping\ClassMetadata;
23+
use Doctrine\Persistence\Mapping\ClassMetadata;
2424
use Doctrine\Common\Persistence\Mapping\Driver\AnnotationDriver as AbstractAnnotationDriver;
2525
use Doctrine\ORM\Events;
2626
use Doctrine\ORM\Mapping;

‎lib/Doctrine/ORM/Mapping/Driver/DatabaseDriver.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/Mapping/Driver/DatabaseDriver.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
namespace Doctrine\ORM\Mapping\Driver;
2121

2222
use Doctrine\Common\Inflector\Inflector;
23-
use Doctrine\Common\Persistence\Mapping\Driver\MappingDriver;
23+
use Doctrine\Persistence\Mapping\Driver\MappingDriver;
2424
use Doctrine\Common\Persistence\Mapping\ClassMetadata;
2525
use Doctrine\DBAL\Schema\AbstractSchemaManager;
2626
use Doctrine\DBAL\Schema\SchemaException;

‎lib/Doctrine/ORM/Mapping/Driver/DriverChain.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/Mapping/Driver/DriverChain.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
namespace Doctrine\ORM\Mapping\Driver;
2121

22-
use Doctrine\Common\Persistence\Mapping\Driver\MappingDriverChain;
22+
use Doctrine\Persistence\Mapping\Driver\MappingDriverChain;
2323

2424
/**
2525
* {@inheritDoc}

‎lib/Doctrine/ORM/Mapping/Driver/PHPDriver.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/Mapping/Driver/PHPDriver.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
namespace Doctrine\ORM\Mapping\Driver;
2121

22-
use Doctrine\Common\Persistence\Mapping\Driver\PHPDriver as CommonPHPDriver;
22+
use Doctrine\Persistence\Mapping\Driver\PHPDriver as CommonPHPDriver;
2323

2424
/**
2525
* {@inheritDoc}

‎lib/Doctrine/ORM/Mapping/Driver/SimplifiedXmlDriver.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/Mapping/Driver/SimplifiedXmlDriver.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
namespace Doctrine\ORM\Mapping\Driver;
2121

22-
use Doctrine\Common\Persistence\Mapping\Driver\SymfonyFileLocator;
22+
use Doctrine\Persistence\Mapping\Driver\SymfonyFileLocator;
2323

2424
/**
2525
* XmlDriver that additionally looks for mapping information in a global file.

‎lib/Doctrine/ORM/Mapping/Driver/SimplifiedYamlDriver.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/Mapping/Driver/SimplifiedYamlDriver.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
namespace Doctrine\ORM\Mapping\Driver;
2121

22-
use Doctrine\Common\Persistence\Mapping\Driver\SymfonyFileLocator;
22+
use Doctrine\Persistence\Mapping\Driver\SymfonyFileLocator;
2323

2424
/**
2525
* YamlDriver that additionally looks for mapping information in a global file.

‎lib/Doctrine/ORM/Mapping/Driver/StaticPHPDriver.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/Mapping/Driver/StaticPHPDriver.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
namespace Doctrine\ORM\Mapping\Driver;
2121

22-
use Doctrine\Common\Persistence\Mapping\Driver\StaticPHPDriver as CommonStaticPHPDriver;
22+
use Doctrine\Persistence\Mapping\Driver\StaticPHPDriver as CommonStaticPHPDriver;
2323

2424
/**
2525
* {@inheritDoc}

‎lib/Doctrine/ORM/Mapping/Driver/XmlDriver.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/Mapping/Driver/XmlDriver.php
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
namespace Doctrine\ORM\Mapping\Driver;
2121

2222
use Doctrine\Common\Collections\Criteria;
23-
use SimpleXMLElement;
24-
use Doctrine\Common\Persistence\Mapping\Driver\FileDriver;
25-
use Doctrine\ORM\Mapping\Builder\EntityListenerBuilder;
2623
use Doctrine\Common\Persistence\Mapping\ClassMetadata;
24+
use Doctrine\Persistence\Mapping\Driver\FileDriver;
25+
use Doctrine\ORM\Mapping\Builder\EntityListenerBuilder;
2726
use Doctrine\ORM\Mapping\MappingException;
2827
use Doctrine\ORM\Mapping\ClassMetadata as Metadata;
28+
use SimpleXMLElement;
2929

3030
/**
3131
* XmlDriver is a metadata driver that enables mapping through XML files.

‎lib/Doctrine/ORM/Mapping/Driver/YamlDriver.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/Mapping/Driver/YamlDriver.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
namespace Doctrine\ORM\Mapping\Driver;
2121

22-
use Doctrine\Common\Persistence\Mapping\ClassMetadata;
22+
use Doctrine\Persistence\Mapping\ClassMetadata;
2323
use Doctrine\ORM\Mapping\Builder\EntityListenerBuilder;
2424
use Doctrine\Common\Persistence\Mapping\Driver\FileDriver;
2525
use Doctrine\ORM\Mapping\ClassMetadata as Metadata;

‎lib/Doctrine/ORM/Mapping/Reflection/ReflectionPropertiesGetter.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/Mapping/Reflection/ReflectionPropertiesGetter.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
namespace Doctrine\ORM\Mapping\Reflection;
2121

22-
use Doctrine\Common\Persistence\Mapping\ReflectionService;
22+
use Doctrine\Persistence\Mapping\ReflectionService;
2323
use ReflectionClass;
2424
use ReflectionProperty;
2525

‎lib/Doctrine/ORM/ORMException.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/ORMException.php
+6-1Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
namespace Doctrine\ORM;
2121

2222
use Doctrine\Common\Cache\Cache as CacheDriver;
23+
use Doctrine\Persistence\ObjectRepository;
2324
use Exception;
2425

2526
/**
@@ -295,7 +296,11 @@ public static function unknownEntityNamespace($entityNamespaceAlias)
295296
*/
296297
public static function invalidEntityRepository($className)
297298
{
298-
return new self("Invalid repository class '".$className."'. It must be a Doctrine\Common\Persistence\ObjectRepository.");
299+
return new self(sprintf(
300+
"Invalid repository class '%s'. It must be a %s.",
301+
$className,
302+
ObjectRepository::class
303+
));
299304
}
300305

301306
/**

‎lib/Doctrine/ORM/Persisters/Entity/CachedPersisterContext.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/Persisters/Entity/CachedPersisterContext.php
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
*/
1919

2020
namespace Doctrine\ORM\Persisters\Entity;
21-
use Doctrine\Common\Persistence\Mapping\ClassMetadata;
21+
22+
use Doctrine\Persistence\Mapping\ClassMetadata;
2223
use Doctrine\ORM\Query\ResultSetMapping;
2324

2425
/**

‎lib/Doctrine/ORM/Proxy/ProxyFactory.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/Proxy/ProxyFactory.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
namespace Doctrine\ORM\Proxy;
2121

22-
use Doctrine\Common\Persistence\Mapping\ClassMetadata;
22+
use Doctrine\Persistence\Mapping\ClassMetadata;
2323
use Doctrine\Common\Proxy\AbstractProxyFactory;
2424
use Doctrine\Common\Proxy\Proxy as BaseProxy;
2525
use Doctrine\Common\Proxy\ProxyDefinition;

‎lib/Doctrine/ORM/Repository/DefaultRepositoryFactory.php

Copy file name to clipboardExpand all lines: lib/Doctrine/ORM/Repository/DefaultRepositoryFactory.php
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
namespace Doctrine\ORM\Repository;
2121

2222
use Doctrine\ORM\EntityManagerInterface;
23+
use Doctrine\Persistence\ObjectRepository;
2324

2425
/**
2526
* This factory is used to create default repository objects for entities at runtime.
@@ -32,7 +33,7 @@ final class DefaultRepositoryFactory implements RepositoryFactory
3233
/**
3334
* The list of EntityRepository instances.
3435
*
35-
* @var \Doctrine\Common\Persistence\ObjectRepository[]
36+
* @var ObjectRepository[]
3637
*/
3738
private $repositoryList = [];
3839

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.