예제 #1
0
파일: TermTest.php 프로젝트: falkbizz/cart
 public function testString()
 {
     $term = new Term('1');
     $this->assertEquals(1, $term->getPeriod());
 }
예제 #2
0
파일: Billing.php 프로젝트: falkbizz/cart
 public function getPriceForTerm(Term $term)
 {
     return $this->getTerm($term->getPeriod())->getTotalPrice();
 }