|
4 | 4 |
|
5 | 5 | namespace Doctrine\ORM\Persisters\Entity;
|
6 | 6 |
|
7 |
| -use BackedEnum; |
8 | 7 | use Doctrine\Common\Collections\Criteria;
|
9 | 8 | use Doctrine\Common\Collections\Expr\Comparison;
|
10 | 9 | use Doctrine\Common\Collections\Order;
|
|
31 | 30 | use Doctrine\ORM\Persisters\Exception\UnrecognizedField;
|
32 | 31 | use Doctrine\ORM\Persisters\SqlExpressionVisitor;
|
33 | 32 | use Doctrine\ORM\Persisters\SqlValueVisitor;
|
34 |
| -use Doctrine\ORM\Proxy\DefaultProxyClassNameResolver; |
| 33 | +use Doctrine\ORM\Persisters\Traits\ResolveValuesHelper; |
35 | 34 | use Doctrine\ORM\Query;
|
36 | 35 | use Doctrine\ORM\Query\QueryException;
|
37 | 36 | use Doctrine\ORM\Query\ResultSetMapping;
|
|
53 | 52 | use function count;
|
54 | 53 | use function implode;
|
55 | 54 | use function is_array;
|
56 |
| -use function is_object; |
57 | 55 | use function reset;
|
58 | 56 | use function spl_object_id;
|
59 | 57 | use function sprintf;
|
|
99 | 97 | class BasicEntityPersister implements EntityPersister
|
100 | 98 | {
|
101 | 99 | use LockSqlHelper;
|
| 100 | + use ResolveValuesHelper; |
102 | 101 |
|
103 | 102 | /** @var array<string,string> */
|
104 | 103 | private static array $comparisonMap = [
|
@@ -1912,62 +1911,6 @@ private function getArrayBindingType(ParameterType|int|string $type): ArrayParam
|
1912 | 1911 | };
|
1913 | 1912 | }
|
1914 | 1913 |
|
1915 |
| - /** |
1916 |
| - * Retrieves the parameters that identifies a value. |
1917 |
| - * |
1918 |
| - * @return mixed[] |
1919 |
| - */ |
1920 |
| - private function getValues(mixed $value): array |
1921 |
| - { |
1922 |
| - if (is_array($value)) { |
1923 |
| - $newValue = []; |
1924 |
| - |
1925 |
| - foreach ($value as $itemValue) { |
1926 |
| - $newValue = array_merge($newValue, $this->getValues($itemValue)); |
1927 |
| - } |
1928 |
| - |
1929 |
| - return [$newValue]; |
1930 |
| - } |
1931 |
| - |
1932 |
| - return $this->getIndividualValue($value); |
1933 |
| - } |
1934 |
| - |
1935 |
| - /** |
1936 |
| - * Retrieves an individual parameter value. |
1937 |
| - * |
1938 |
| - * @psalm-return list<mixed> |
1939 |
| - */ |
1940 |
| - private function getIndividualValue(mixed $value): array |
1941 |
| - { |
1942 |
| - if (! is_object($value)) { |
1943 |
| - return [$value]; |
1944 |
| - } |
1945 |
| - |
1946 |
| - if ($value instanceof BackedEnum) { |
1947 |
| - return [$value->value]; |
1948 |
| - } |
1949 |
| - |
1950 |
| - $valueClass = DefaultProxyClassNameResolver::getClass($value); |
1951 |
| - |
1952 |
| - if ($this->em->getMetadataFactory()->isTransient($valueClass)) { |
1953 |
| - return [$value]; |
1954 |
| - } |
1955 |
| - |
1956 |
| - $class = $this->em->getClassMetadata($valueClass); |
1957 |
| - |
1958 |
| - if ($class->isIdentifierComposite) { |
1959 |
| - $newValue = []; |
1960 |
| - |
1961 |
| - foreach ($class->getIdentifierValues($value) as $innerValue) { |
1962 |
| - $newValue = array_merge($newValue, $this->getValues($innerValue)); |
1963 |
| - } |
1964 |
| - |
1965 |
| - return $newValue; |
1966 |
| - } |
1967 |
| - |
1968 |
| - return [$this->em->getUnitOfWork()->getSingleIdentifierValue($value)]; |
1969 |
| - } |
1970 |
| - |
1971 | 1914 | public function exists(object $entity, Criteria|null $extraConditions = null): bool
|
1972 | 1915 | {
|
1973 | 1916 | $criteria = $this->class->getIdentifierValues($entity);
|
|
0 commit comments