CommerceGuys\Zone\Model\Zone::getId PHP Method

getId() public method

public getId ( )
    public function getId()
    {
        return $this->id;
    }

Usage Example

Example #1
0
 /**
  * @covers ::getId
  * @covers ::setId
  *
  * @uses \CommerceGuys\Zone\Model\Zone::__construct
  */
 public function testId()
 {
     $this->zone->setId('north_america');
     $this->assertEquals('north_america', $this->zone->getId());
 }