June 2017
Intermediate to advanced
394 pages
8h 52m
English
When Doctrine was released, a catchy way of showing how to map objects in the code examples was by using annotations.
class SumTest extends PHPUnit_Framework_TestCase { /** @dataProvider aMethodName */ public function testAddition() { //... } }
In order to map the Order Entity to the persistence store, the source code for the Order should be modified to add the Doctrine ...