Commit 65179b10 by Carsten Brandt

code style in fixtures

parent ed14eaaa
...@@ -47,6 +47,7 @@ class ActiveFixture extends BaseActiveFixture ...@@ -47,6 +47,7 @@ class ActiveFixture extends BaseActiveFixture
*/ */
private $_table; private $_table;
/** /**
* @inheritdoc * @inheritdoc
*/ */
......
...@@ -28,6 +28,7 @@ abstract class DbFixture extends Fixture ...@@ -28,6 +28,7 @@ abstract class DbFixture extends Fixture
*/ */
public $db = 'db'; public $db = 'db';
/** /**
* @inheritdoc * @inheritdoc
*/ */
......
...@@ -35,6 +35,7 @@ class Fixture extends Component ...@@ -35,6 +35,7 @@ class Fixture extends Component
*/ */
public $depends = []; public $depends = [];
/** /**
* Loads the fixture. * Loads the fixture.
* This method is called before performing every test method. * This method is called before performing every test method.
......
...@@ -38,6 +38,7 @@ trait FixtureTrait ...@@ -38,6 +38,7 @@ trait FixtureTrait
*/ */
private $_fixtureAliases; private $_fixtureAliases;
/** /**
* Returns the value of an object property. * Returns the value of an object property.
* *
......
...@@ -34,7 +34,7 @@ class InitDbFixture extends DbFixture ...@@ -34,7 +34,7 @@ class InitDbFixture extends DbFixture
public $initScript = '@app/tests/fixtures/initdb.php'; public $initScript = '@app/tests/fixtures/initdb.php';
/** /**
* @var array list of database schemas that the test tables may reside in. Defaults to * @var array list of database schemas that the test tables may reside in. Defaults to
* [''], meaning using the default schema (an empty string refers to the * `['']`, meaning using the default schema (an empty string refers to the
* default schema). This property is mainly used when turning on and off integrity checks * default schema). This property is mainly used when turning on and off integrity checks
* so that fixture data can be populated into the database without causing problem. * so that fixture data can be populated into the database without causing problem.
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment