コード例 #1
0
 public function testPaymentMethods()
 {
     $this->object->setPaymentMethods($this->testString);
     $this->assertSame($this->testString, $this->object->getPaymentMethods());
     $this->object->setPaymentMethods(function () {
         return $this->testString;
     });
     $this->assertSame($this->testString, $this->object->getPaymentMethods());
 }
コード例 #2
0
ファイル: PanelTopCart.php プロジェクト: sieulog/yii2-cart
 public function getModule()
 {
     return Module::getInstance();
 }