unload() public method

public unload ( )
示例#1
0
 /**
  * Unloads the fixture.
  *
  * The default implementation will clean up the table by calling [[resetTable()]].
  */
 public function unload()
 {
     $this->resetTable();
     parent::unload();
 }
示例#2
0
 /**
  * Unloads the fixture.
  *
  * The default implementation will clean up the colection by calling [[resetCollection()]].
  */
 public function unload()
 {
     $this->resetCollection();
     parent::unload();
 }