mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Improve code style
This commit is contained in:
parent
e56452b2c5
commit
a05c09c1f4
1 changed files with 8 additions and 6 deletions
|
@ -425,11 +425,13 @@ abstract class ControllerTestCase extends CakeTestCase {
|
|||
*/
|
||||
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
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue