[DDC-1771] CLI generation of proxies for abstract STI base classes Created: 05/Apr/12 Updated: 07/Apr/12 Resolved: 07/Apr/12 |
|
| Status: | Resolved |
| Project: | Doctrine 2 - ORM |
| Component/s: | ORM |
| Affects Version/s: | 2.2.0-RC1 |
| Fix Version/s: | 2.2.2 |
| Security Level: | All |
| Type: | Bug | Priority: | Minor |
| Reporter: | Brent | Assignee: | Benjamin Eberlei |
| Resolution: | Fixed | Votes: | 0 |
| Labels: | None | ||
| Description |
|
When I use the CLI tool to generate proxies manually (orm:generate-proxies), a proxy is generated for the abstract entity below, but this proxy is not declared abstract itself. The entity contains abstract methods, and the proxy obviously does not implement these methods, so it, too, must be declared abstract. Because it is not, the next time I try to generate proxies in this manner, I receive a PHP Fatal error: Class Proxies_CG_\Ranking\AbstractRule contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (Ranking\AbstractRule::myAbstractMethod) My workaround is to delete this proxy first and then regenerate. While a minor inconvenience at this point, it would be great if the proxy generation code could mark proxies as abstract when necessary to avoid these errors. Thank you. – Entity /**
– Generated proxy /**
|
| Comments |
| Comment by Benjamin Eberlei [ 07/Apr/12 ] |
|
Fixed |
| Comment by Brent [ 07/Apr/12 ] |
|
Thank you, sir. |