DDC-484: ProxyException.php not using a use case #603

Closed
opened 2026-01-22 12:44:02 +01:00 by admin · 2 comments
Owner

Originally created by @doctrinebot on GitHub (Mar 30, 2010).

Originally assigned to: @beberlei on GitHub.

Jira issue originally created by user ssurowiec:

The ProxyException class attempts to extends ORMException but does so incorrectly.

class ProxyException extends Doctrine\ORM\ORMException {

should be:

use Doctrine\ORM\ORMException;
class ProxyException extends ORMException {

Originally created by @doctrinebot on GitHub (Mar 30, 2010). Originally assigned to: @beberlei on GitHub. Jira issue originally created by user ssurowiec: The ProxyException class attempts to extends ORMException but does so incorrectly. class ProxyException extends Doctrine\ORM\ORMException { should be: use Doctrine\ORM\ORMException; class ProxyException extends ORMException {
admin added the Bug label 2026-01-22 12:44:02 +01:00
admin closed this issue 2026-01-22 12:44:02 +01:00
Author
Owner

@doctrinebot commented on GitHub (Apr 2, 2010):

Comment created by @beberlei:

Fixed

@doctrinebot commented on GitHub (Apr 2, 2010): Comment created by @beberlei: Fixed
Author
Owner

@doctrinebot commented on GitHub (Apr 2, 2010):

Issue was closed with resolution "Fixed"

@doctrinebot commented on GitHub (Apr 2, 2010): Issue was closed with resolution "Fixed"
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: doctrine/archived-orm#603