-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Umsetzung von Collection-NestedSet-Struktur mit DoctrineExtensions #227
base: doctrine
Are you sure you want to change the base?
Conversation
…ctrine ORM (using the Doctrine "Tree" extension to implement nested-set behavior)
Ich versuche die Tests mal mit PHP 7.2 laufen zu lassen, um einschätzen zu können, wieviele Probleme es gibt durch die alten Zend-Abhängigkeiten. |
Ich habe die Tests auf |
…ne-extensions 3.0
…de to PHPUnit v6
…n; this prevents some tests from throwing Doctrine exceptions due to the CollectionRole->rootCollection relationship currently not being set to cascade persist
…e Doctrine Tree extension
…ses the children() function of the Doctrine Tree extension to return the direct children of a Collection instance
…>children relationship
…f a given object
…role relationship is set for the root collection
… root collection also deletes (or stores) its entire children tree
PR für #220.
Im Unterschied zu #131 wird in diesem PR die Doctrine "Tree" extension genutzt, um mittels der
Model2\Collection
Klasse einNestedSet
-Verhalten zu implementieren.Zumindest der Test
CollectionTest->testNestedSet
sollte mit den Änderungen in diesem PR erfolgreich durchlaufen.Die meisten anderen Tests in
CollectionTest
müssten allerdings noch überarbeitet werden und Properties/Funktionen in den KlassenModel2\Collection
&Model2\CollectionRole
ergänzt werden.