CommerceGuys\Tax\Resolver\Context::getStoreAddress PHP 메소드

getStoreAddress() 공개 메소드

Gets the store address.
public getStoreAddress ( ) : CommerceGuys\Addressing\AddressInterface
리턴 CommerceGuys\Addressing\AddressInterface The store address.
    public function getStoreAddress()
    {
        return $this->storeAddress;
    }

Usage Example

예제 #1
0
파일: ContextTest.php 프로젝트: bgandon/tax
 /**
  * @covers ::__construct
  *
  * @uses \CommerceGuys\Tax\Resolver\Context::getCustomerAddress
  * @uses \CommerceGuys\Tax\Resolver\Context::getStoreAddress
  * @uses \CommerceGuys\Tax\Resolver\Context::getCustomerTaxNumber
  * @uses \CommerceGuys\Tax\Resolver\Context::getStoreRegistrations
  * @uses \CommerceGuys\Tax\Resolver\Context::getDate
  */
 public function testConstructor()
 {
     $customerAddress = $this->getMockBuilder('CommerceGuys\\Addressing\\Model\\Address')->getMock();
     $storeAddress = $this->getMockBuilder('CommerceGuys\\Addressing\\Model\\Address')->getMock();
     $date = new \DateTime('2014-10-10');
     $context = new Context($customerAddress, $storeAddress, '0123', ['DE'], $date);
     $this->assertSame($customerAddress, $context->getCustomerAddress());
     $this->assertSame($storeAddress, $context->getStoreAddress());
     $this->assertEquals('0123', $context->getCustomerTaxNumber());
     $this->assertEquals(['DE'], $context->getStoreRegistrations());
     $this->assertSame($date, $context->getDate());
 }
All Usage Examples Of CommerceGuys\Tax\Resolver\Context::getStoreAddress