Bravo3\Orm\Tests\Entities\Product::setId PHP Method

setId() public method

Set Id
public setId ( integer $id )
$id integer
    public function setId($id)
    {
        $this->id = $id;
        return $this;
    }

Usage Example

Example #1
0
 /**
  * @dataProvider getCacheServices
  * @param EntityCachingInterface $service
  */
 public function testStrategy(EntityCachingInterface $service)
 {
     $product = new Product();
     $product->setId(1234);
     $this->assertFalse($service->exists(Product::class, 1234));
     $service->store(Product::class, '1234', $product);
     $this->assertTrue($service->exists(Product::class, 1234));
     $r = $service->retrieve(Product::class, '1234');
     $service->purge(Product::class, '1234');
     $this->assertFalse($service->exists(Product::class, 1234));
     $this->assertEquals(1234, $r->getId());
 }
All Usage Examples Of Bravo3\Orm\Tests\Entities\Product::setId