fix argument call
This commit is contained in:
@@ -165,7 +165,7 @@ class Category extends BaseLoop
|
|||||||
|
|
||||||
foreach ($categories as $category) {
|
foreach ($categories as $category) {
|
||||||
|
|
||||||
if ($this->not_empty && $category->countAllProducts() == 0) continue;
|
if ($this->getNot_empty() && $category->countAllProducts() == 0) continue;
|
||||||
|
|
||||||
$loopResultRow = new LoopResultRow();
|
$loopResultRow = new LoopResultRow();
|
||||||
|
|
||||||
|
|||||||
@@ -240,4 +240,9 @@ class CartTest extends \PHPUnit_Framework_TestCase
|
|||||||
$this->assertEquals($customer->getId(), $getCart->getCustomerId());
|
$this->assertEquals($customer->getId(), $getCart->getCustomerId());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testAddArticle()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user