Просмотр исходного кода

Merge pull request #351 from bburnichon/bugfix/doctrine-proxy

Change Proxy class used to Doctrine\Common\Persistence\Proxy
Johannes 10 лет назад
Родитель
Сommit
42da677690
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      tests/JMS/Serializer/Tests/Fixtures/SimpleObjectProxy.php

+ 1 - 1
tests/JMS/Serializer/Tests/Fixtures/SimpleObjectProxy.php

@@ -18,7 +18,7 @@
 
 namespace JMS\Serializer\Tests\Fixtures;
 
-use Doctrine\ORM\Proxy\Proxy;
+use Doctrine\Common\Persistence\Proxy;
 
 class SimpleObjectProxy extends SimpleObject implements Proxy
 {