Skip to content

Commit

Permalink
Comment fix (Return full class name)
Browse files Browse the repository at this point in the history
  • Loading branch information
neOk committed Nov 24, 2015
1 parent 9791468 commit e00858e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/DataSet/DataSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function __construct(Connector $connection) {
* see $this->fixture
*
* @param array $data
* @return $this
* @return \Zumba\PHPUnit\Extensions\Mongo\DataSet\DataSet
*/
public function setFixture(array $data) {
$this->fixture = $data;
Expand All @@ -50,7 +50,7 @@ public function setFixture(array $data) {
/**
* Drops all collections specified in the fixture keys.
*
* @return $this
* @return \Zumba\PHPUnit\Extensions\Mongo\DataSet\DataSet
*/
public function dropAllCollections() {
foreach ($this->fixture as $collectionKey => $collectionData) {
Expand All @@ -62,7 +62,7 @@ public function dropAllCollections() {
/**
* Creates all collections with data from the fixture.
*
* @return $this
* @return \Zumba\PHPUnit\Extensions\Mongo\DataSet\DataSet
*/
public function buildCollections() {
foreach ($this->fixture as $collection => $data) {
Expand Down

0 comments on commit e00858e

Please sign in to comment.