Skip to content

Commit

Permalink
Improve code style
Browse files Browse the repository at this point in the history
  • Loading branch information
bancer committed Aug 14, 2018
1 parent e56452b commit a05c09c
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions lib/Cake/TestSuite/ControllerTestCase.php
Expand Up @@ -425,11 +425,13 @@ public function generate($controller, $mocks = array()) {
*/
public function tearDown() {
parent::tearDown();
unset($this->contents);
unset($this->controller);
unset($this->headers);
unset($this->result);
unset($this->view);
unset($this->vars);
unset(
$this->contents,
$this->controller,
$this->headers,
$this->result,
$this->view,
$this->vars
);
}
}

0 comments on commit a05c09c

Please sign in to comment.