Skip to content

Commit

Permalink
Fixes return type void of test methods
Browse files Browse the repository at this point in the history
  • Loading branch information
hollodotme committed Jan 28, 2018
1 parent 727bb3d commit e32f110
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/Integration/NetworkSocketTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ function ( $buffer ) use ( $unitTest, $data, &$passCounter )
*
* @dataProvider contentLengthProvider
*/
public function testCanGetLengthOfSentContent( int $length ) : void
public function testCanGetLengthOfSentContent( int $length )
{
$content = str_repeat( 'a', $length );
$connection = new NetworkSocket( '127.0.0.1', 9000 );
Expand Down
2 changes: 1 addition & 1 deletion tests/Integration/UnixDomainSocketTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ function ( $buffer ) use ( $unitTest, $data, &$passCounter )
*
* @dataProvider contentLengthProvider
*/
public function testCanGetLengthOfSentContent( int $length ) : void
public function testCanGetLengthOfSentContent( int $length )
{
$content = str_repeat( 'a', $length );
$connection = new UnixDomainSocket( '/var/run/php-uds.sock' );
Expand Down

0 comments on commit e32f110

Please sign in to comment.