CommerceGuys\Zone\Model\Zone::getName PHP Method

getName() public method

public getName ( )
    public function getName()
    {
        return $this->name;
    }

Usage Example

Example #1
0
 /**
  * @covers ::getName
  * @covers ::setName
  * @covers ::__toString
  *
  * @uses \CommerceGuys\Zone\Model\Zone::__construct
  */
 public function testName()
 {
     $this->zone->setName('North America');
     $this->assertEquals('North America', $this->zone->getName());
     $this->assertEquals('North America', (string) $this->zone);
 }