Inheritance: extends Pheasant\DomainObject
Example #1
0
 public function testDomainObjectsWithReservedNames()
 {
     $order = Order::create(array('id' => 1));
     $this->assertNotNull($order);
     $this->assertEquals(1, Order::all()->count());
 }