1
0
Fork 0
mirror of synced 2024-06-02 19:04:49 +12:00

Update OpenSSLTest.php

This commit is contained in:
Mou Ikkai 2020-09-30 17:53:38 -04:00 committed by GitHub
parent d7a26b72af
commit c2d4e495f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,11 +7,11 @@ use PHPUnit\Framework\TestCase;
class OpenSSLTest extends TestCase
{
public function setUp()
public function setUp(): void
{
}
public function tearDown()
public function tearDown(): void
{
}
@ -27,4 +27,4 @@ class OpenSSLTest extends TestCase
$this->assertEquals(OpenSSL::decrypt($data, $method, $key, 0, $iv, $tag), $secret);
}
}
}