Skip to content
This repository has been archived by the owner on Jul 15, 2020. It is now read-only.

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
petk committed May 15, 2016
1 parent 2b26323 commit f3c0c14
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 deletions.
6 changes: 3 additions & 3 deletions src/Mapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ class Mapper
/**
* Mapper constructor.
*
* @param $config
* @param $feed
* @param $log
* @param Config $config
* @param array $feed
* @param Log $log
*/
public function __construct($config, $feed, $log)
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Collection/CommentCollectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ public function testGetMergedCommentsByUserId()
$mergedComments = $comments->getMergedCommentsByUserId(1);
$this->assertEquals(1, sizeof($mergedComments));
}
}
}
2 changes: 1 addition & 1 deletion tests/Collection/UserCollectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ public function testGetTopUsers()
$users->get(2)
], $users->getTopUsers(3, $config->get('ignored_users')));
}
}
}
2 changes: 1 addition & 1 deletion tests/CollectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,4 @@ public function testNext()
$this->assertEquals($objects[0], $collection->next());
$this->assertEquals($objects[1], $collection->next());
}
}
}
3 changes: 1 addition & 2 deletions tests/LogTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
use org\bovigo\vfs\vfsStreamWrapper;
use PHPWorldWide\Stats\Log;


class LogTest extends \PHPUnit_Framework_TestCase
{
private $log;
Expand Down Expand Up @@ -68,4 +67,4 @@ public function testClearLogs()
$this->assertFalse($this->root->hasChild('20160516000000'));
$this->assertFalse($this->root->hasChild('20160516000001'));
}
}
}
2 changes: 1 addition & 1 deletion tests/PointsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,4 +132,4 @@ public function offensiveWordsProvider()
['Lorem ipsum dolor sit amet go To HelL yes', -20],
];
}
}
}

0 comments on commit f3c0c14

Please sign in to comment.