Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 41 additions & 41 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion tests/DatabaseEncryptionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
use Rancoud\Session\DatabaseEncryption;
use Rancoud\Session\SessionException;

/** @internal */
/**
* @internal
*/
class DatabaseEncryptionTest extends TestCase
{
protected static DB $db;
Expand Down
4 changes: 3 additions & 1 deletion tests/DatabaseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
use Rancoud\Session\Database;
use Rancoud\Session\SessionException;

/** @internal */
/**
* @internal
*/
class DatabaseTest extends TestCase
{
protected static DB $db;
Expand Down
4 changes: 3 additions & 1 deletion tests/DefaultEncryptionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
use PHPUnit\Framework\TestCase;
use Rancoud\Session\Session;

/** @internal */
/**
* @internal
*/
class DefaultEncryptionTest extends TestCase
{
protected function setUp(): void
Expand Down
4 changes: 3 additions & 1 deletion tests/EncryptionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
use PHPUnit\Framework\TestCase;
use Rancoud\Session\SessionException;

/** @internal */
/**
* @internal
*/
class EncryptionTest extends TestCase
{
public function testDefaultEncryption(): void
Expand Down
4 changes: 3 additions & 1 deletion tests/FileEncryptionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
use Rancoud\Session\FileEncryption;
use Rancoud\Session\SessionException;

/** @internal */
/**
* @internal
*/
class FileEncryptionTest extends TestCase
{
protected function setUp(): void
Expand Down
4 changes: 3 additions & 1 deletion tests/FileTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
use Rancoud\Session\File;
use Rancoud\Session\SessionException;

/** @internal */
/**
* @internal
*/
class FileTest extends TestCase
{
protected function setUp(): void
Expand Down
4 changes: 3 additions & 1 deletion tests/FileWithNewPrefixTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
use PHPUnit\Framework\TestCase;
use Rancoud\Session\File;

/** @internal */
/**
* @internal
*/
class FileWithNewPrefixTest extends TestCase
{
protected function setUp(): void
Expand Down
4 changes: 3 additions & 1 deletion tests/RedisEncryptionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
use Predis\Client as Predis;
use Rancoud\Session\RedisEncryption;

/** @internal */
/**
* @internal
*/
class RedisEncryptionTest extends TestCase
{
private static Predis $redis;
Expand Down
4 changes: 3 additions & 1 deletion tests/RedisTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
use Rancoud\Session\Redis;
use Rancoud\Session\SessionException;

/** @internal */
/**
* @internal
*/
class RedisTest extends TestCase
{
private static Predis $redis;
Expand Down
4 changes: 3 additions & 1 deletion tests/SessionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
use Rancoud\Session\Session;
use Rancoud\Session\SessionException;

/** @internal */
/**
* @internal
*/
class SessionTest extends TestCase
{
protected function setUp(): void
Expand Down
Loading