mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fix docblock of CakeFixtureManager::loadSingle()
This commit is contained in:
parent
a9c279aab0
commit
2d43f1873c
1 changed files with 4 additions and 3 deletions
|
@ -177,7 +177,7 @@ class CakeFixtureManager {
|
|||
}
|
||||
|
||||
/**
|
||||
* Crates the fixtures tables and inserts data on them
|
||||
* Creates the fixtures tables and inserts data on them.
|
||||
*
|
||||
* @param CakeTestCase $test the test to inspect for fixture loading
|
||||
* @return void
|
||||
|
@ -225,9 +225,10 @@ class CakeFixtureManager {
|
|||
}
|
||||
|
||||
/**
|
||||
* Truncates the fixtures tables
|
||||
* Creates a single fixture table and loads data into it.
|
||||
*
|
||||
* @param CakeTestCase $test the test to inspect for fixture unloading
|
||||
* @param string $name of the fixture
|
||||
* @param DataSource $db DataSource instance or leave null to get DataSource from the fixture
|
||||
* @return void
|
||||
* @throws UnexpectedValueException if $name is not a previously loaded class
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue