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
3 changes: 3 additions & 0 deletions phpstan.neon
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
parameters:
excludes_analyse:
- src/Collection
3 changes: 3 additions & 0 deletions src/Collection/CollectionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

namespace BitWasp\Bitcoin\Collection;

/**
* @deprecated v2.0.0
*/
interface CollectionInterface extends \Iterator, \ArrayAccess, \Countable
{
/**
Expand Down
3 changes: 3 additions & 0 deletions src/Collection/StaticBufferCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

use BitWasp\Buffertools\BufferInterface;

/**
* @deprecated v2.0.0
*/
class StaticBufferCollection extends StaticCollection
{
/**
Expand Down
3 changes: 3 additions & 0 deletions src/Collection/StaticCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

use BitWasp\Buffertools\BufferInterface;

/**
* @deprecated v2.0.0
*/
abstract class StaticCollection implements CollectionInterface
{
/**
Expand Down