Skip to content

Commit a7fe26f

Browse files
authored
Clarify trait usage (#15)
Properly state that this is a trait, the class name does not suggest so ATM. Also suggest renaming it on import to avoid confusion.
1 parent 747a0fc commit a7fe26f

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

README.rst

+9-2
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,18 @@ Within testing framework
5151
],
5252
];
5353
54-
#. Add API
54+
#. Import the :php:`Codappix\Typo3PhpDatasets\TestingFramework` trait
5555

5656
.. code-block:: php
5757
58-
use Codappix\Typo3PhpDatasets\TestingFramework;
58+
use Codappix\Typo3PhpDatasets\TestingFramework as PhpDatasets;
59+
60+
final class MyTest extends FunctionalTestCase
61+
{
62+
use PhpDatasets;
63+
64+
// ...
65+
}
5966
6067
#. Use API
6168

0 commit comments

Comments
 (0)