Skip to content

Commit

Permalink
deps: allow brick/math 0.12
Browse files Browse the repository at this point in the history
deps: other dev deps update
  • Loading branch information
Spomky committed Jan 29, 2024
1 parent dd77649 commit f6490e5
Show file tree
Hide file tree
Showing 26 changed files with 33 additions and 46 deletions.
26 changes: 13 additions & 13 deletions deptrac.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
parameters:
paths:
- './src'
layers:
- name: 'CBOR'
collectors:
- type: 'className'
regex: '^CBO\\'
- name: 'Vendors'
collectors:
- { type: className, regex: '^Brick\\' }
ruleset:
CBOR:
- Vendors
paths:
- './src'
layers:
- name: 'CBOR'
collectors:
- type: 'className'
regex: '^CBO\\'
- name: 'Vendors'
collectors:
- { type: className, regex: '^Brick\\' }
ruleset:
CBOR:
- Vendors
3 changes: 0 additions & 3 deletions src/ByteStringObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@

namespace CBOR;

/**
* @see \CBOR\Test\ByteStringObjectTest
*/
final class ByteStringObject extends AbstractCBORObject implements Normalizable
{
private const MAJOR_TYPE = self::MAJOR_TYPE_BYTE_STRING;
Expand Down
3 changes: 0 additions & 3 deletions src/IndefiniteLengthByteStringObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@

namespace CBOR;

/**
* @see \CBOR\Test\IndefiniteLengthByteStringObjectTest
*/
final class IndefiniteLengthByteStringObject extends AbstractCBORObject implements Normalizable
{
private const MAJOR_TYPE = self::MAJOR_TYPE_BYTE_STRING;
Expand Down
3 changes: 0 additions & 3 deletions src/IndefiniteLengthTextStringObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@

namespace CBOR;

/**
* @see \CBOR\Test\IndefiniteLengthTextStringObjectTest
*/
final class IndefiniteLengthTextStringObject extends AbstractCBORObject implements Normalizable
{
private const MAJOR_TYPE = self::MAJOR_TYPE_TEXT_STRING;
Expand Down
1 change: 0 additions & 1 deletion src/ListObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
/**
* @phpstan-implements ArrayAccess<int, CBORObject>
* @phpstan-implements IteratorAggregate<int, CBORObject>
* @see \CBOR\Test\ListObjectTest
*/
class ListObject extends AbstractCBORObject implements Countable, IteratorAggregate, Normalizable, ArrayAccess
{
Expand Down
3 changes: 0 additions & 3 deletions src/TextStringObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@

namespace CBOR;

/**
* @see \CBOR\Test\TextStringObjectTest
*/
final class TextStringObject extends AbstractCBORObject implements Normalizable
{
private const MAJOR_TYPE = self::MAJOR_TYPE_TEXT_STRING;
Expand Down
2 changes: 1 addition & 1 deletion tests/ByteStringObjectTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use PHPUnit\Framework\Attributes\Test;

/**
* @internal
* @internal
*/
final class ByteStringObjectTest extends CBORTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/CBORTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use PHPUnit\Framework\TestCase;

/**
* @internal
* @internal
*/
abstract class CBORTestCase extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/DoublePrecisionFloat.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use PHPUnit\Framework\Attributes\Test;

/**
* @internal
* @internal
*/
final class DoublePrecisionFloat extends CBORTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/FloatTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use PHPUnit\Framework\Attributes\Test;

/**
* @internal
* @internal
*/
final class FloatTest extends CBORTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/GlobalTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use PHPUnit\Framework\Attributes\Test;

/**
* @internal
* @internal
*/
final class GlobalTest extends CBORTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/IndefiniteLengthByteStringObjectTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use PHPUnit\Framework\Attributes\Test;

/**
* @internal
* @internal
*/
final class IndefiniteLengthByteStringObjectTest extends CBORTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/IndefiniteLengthTextStringObjectTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
use PHPUnit\Framework\Attributes\Test;

/**
* @internal
* @internal
*/
final class IndefiniteLengthTextStringObjectTest extends CBORTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/InvalidTypeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
use RuntimeException;

/**
* @internal
* @internal
*/
final class InvalidTypeTest extends CBORTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/ListObjectTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use PHPUnit\Framework\Attributes\Test;

/**
* @internal
* @internal
*/
final class ListObjectTest extends CBORTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/MapObjectTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
use PHPUnit\Framework\Attributes\Test;

/**
* @internal
* @internal
*/
final class MapObjectTest extends CBORTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/OtherObject/AllTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
use const STR_PAD_LEFT;

/**
* @internal
* @internal
*/
final class AllTest extends CBORTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/OtherTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use PHPUnit\Framework\Attributes\Test;

/**
* @internal
* @internal
*/
final class OtherTest extends CBORTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/SignedIntegerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use PHPUnit\Framework\Attributes\Test;

/**
* @internal
* @internal
*/
final class SignedIntegerTest extends CBORTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Tag/DatetimeTagTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
use PHPUnit\Framework\TestCase;

/**
* @internal
* @internal
*/
final class DatetimeTagTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Tag/EncodingTagsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use PHPUnit\Framework\TestCase;

/**
* @internal
* @internal
*/
final class EncodingTagsTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Tag/MimeTagTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
use PHPUnit\Framework\TestCase;

/**
* @internal
* @internal
*/
final class MimeTagTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Tag/SimpleTagsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use PHPUnit\Framework\TestCase;

/**
* @internal
* @internal
*/
final class SimpleTagsTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/TextStringObjectTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use PHPUnit\Framework\Attributes\Test;

/**
* @internal
* @internal
*/
final class TextStringObjectTest extends CBORTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/UnsignedIntegerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use PHPUnit\Framework\Attributes\Test;

/**
* @internal
* @internal
*/
final class UnsignedIntegerTest extends CBORTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/VectorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use const JSON_THROW_ON_ERROR;

/**
* @internal
* @internal
*/
final class VectorTest extends CBORTestCase
{
Expand Down

0 comments on commit f6490e5

Please sign in to comment.