CS adjustment

This commit is contained in:
terrafrost 2023-10-07 18:22:07 -05:00
parent 1bfc9a3e44
commit 967210fb46
2 changed files with 3 additions and 2 deletions

View File

@ -19,4 +19,4 @@ if (extension_loaded('mbstring')) {
'is not supported by phpseclib.' 'is not supported by phpseclib.'
); );
} }
} }

View File

@ -807,7 +807,8 @@ class SFTPUserStoryTest extends PhpseclibFunctionalTestCase
public function testCallableGetWithLength($sftp) public function testCallableGetWithLength($sftp)
{ {
$sftp->put('test.txt', 'zzzzz'); $sftp->put('test.txt', 'zzzzz');
$sftp->get('test.txt', function($data) {}, 0, 1); $sftp->get('test.txt', function($data) {
}, 0, 1);
$this->assertTrue(true); $this->assertTrue(true);
} }
} }