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/ClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
use Rancoud\Http\Message\Stream;
use Symfony\Component\Process\Process;

/** @internal */
/**
* @internal
*/
class ClientTest extends TestCase
{
protected static Process $process;
Expand Down
4 changes: 3 additions & 1 deletion tests/FactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
use Rancoud\Http\Message\Factory\Factory;
use Rancoud\Http\Message\Uri;

/** @internal */
/**
* @internal
*/
class FactoryTest extends TestCase
{
public function testCreateRequest(): void
Expand Down
4 changes: 3 additions & 1 deletion tests/RequestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
use Rancoud\Http\Message\Request;
use Rancoud\Http\Message\Uri;

/** @internal */
/**
* @internal
*/
class RequestTest extends TestCase
{
public function testRequestUriMayBeString(): void
Expand Down
4 changes: 3 additions & 1 deletion tests/ResponseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
use Rancoud\Http\Message\Factory\Factory;
use Rancoud\Http\Message\Response;

/** @internal */
/**
* @internal
*/
#[\PHPUnit\Framework\Attributes\BackupGlobals(false)]
#[PreserveGlobalState(false)]
class ResponseTest extends TestCase
Expand Down
4 changes: 3 additions & 1 deletion tests/ServerRequestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
use Rancoud\Http\Message\UploadedFile;
use Rancoud\Http\Message\Uri;

/** @internal */
/**
* @internal
*/
class ServerRequestTest extends TestCase
{
public function testConstruct(): void
Expand Down
4 changes: 3 additions & 1 deletion tests/StreamTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
use PHPUnit\Framework\TestCase;
use Rancoud\Http\Message\Stream;

/** @internal */
/**
* @internal
*/
class StreamTest extends TestCase
{
public function testConstructorInitializesProperties(): void
Expand Down
4 changes: 3 additions & 1 deletion tests/UploadedFileTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
use Rancoud\Http\Message\Stream;
use Rancoud\Http\Message\UploadedFile;

/** @internal */
/**
* @internal
*/
class UploadedFileTest extends TestCase
{
protected array $cleanup;
Expand Down
4 changes: 3 additions & 1 deletion tests/UriTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
use PHPUnit\Framework\TestCase;
use Rancoud\Http\Message\Uri;

/** @internal */
/**
* @internal
*/
class UriTest extends TestCase
{
public const string RFC3986_BASE = 'https://a/b/c/d;p?q';
Expand Down
Loading