CommerceGuys\Zone\Model\Zone::getPriority PHP Method

getPriority() public method

public getPriority ( )
    public function getPriority()
    {
        return $this->priority;
    }

Usage Example

Example #1
0
 /**
  * @covers ::getPriority
  * @covers ::setPriority
  *
  * @uses \CommerceGuys\Zone\Model\Zone::__construct
  */
 public function testPriority()
 {
     $this->zone->setPriority(10);
     $this->assertEquals(10, $this->zone->getPriority());
 }