I\'m trying to get some simple CRUD done with doctrine 2 but when it\'s time to update a record with one property set as an array collection I don\'t seem to get removeElement() to work as it\'s suppo
I currently trying to test a symfony app that has secured pages, using functional tests. Scenario Log in as a user that is a superadmin (thus bypassing any credential check)
I want to apologies if I haven\'t done enough research in google but to be honest I don\'t know exactly what to search for. My problem is with Doctrine. I use Symfony framework and I want to write the
schema.yml: Membership: columns: id: { type: integer(4), notnull: true, unique: true, primary: true, autoincrement: true }
I am trying to get all users who logged in last day. How can I do it ? In yml the table for users is Timestampable.
Given that I Fetch all my entities up front // Get All Users $qb = $em->createQueryBuilder(); $qb->select(\"u\")-&开发者_开发技巧gt;from->(\"User u\");
While following the \"Practical Symfony\" course, I have run in a strange error. I have installed a Debian Squeeze in a VMWare 6.5.5 machine. It comes with PHP 5.3.3 and I am using Symfony 1.4. The s
I have an issue with single table inheritance and I\'m not sure if I\'m interpreting the documentation correctly.
I have a collection of users who completed a certain test and a list of users who got an invite for that test. Now I\'d like to fetch all the users who did not complete the test. I thought it\'d be si
In a symfony application, I have a list of modules which are built on the doctrine admin generator. Because the app is embedded in another system I need to replace all redirect() calls in the action c