Skip to content

Commit

Permalink
Changed way to get to clean up the conceptions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Winfle committed Dec 14, 2018
1 parent 1e2f3fb commit 5ea6e72
Showing 1 changed file with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* @magentoAppIsolation enabled
*
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
* @SuppressWarnings(PHPMD.StaticAccess)
*/
class AssignCouponDataAfterOrderCustomerAssignTest extends \PHPUnit\Framework\TestCase
{
Expand Down Expand Up @@ -111,12 +110,10 @@ protected function setUp()
*/
protected function tearDown()
{
unset(
$this->order,
$this->coupon,
$this->customer,
$this->salesRule
);
$this->salesRule = null;
$this->customer = null;
$this->coupon = null;
$this->order = null;
}

/**
Expand Down

0 comments on commit 5ea6e72

Please sign in to comment.