Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
petrknap committed Nov 2, 2024
1 parent d1d92ce commit 4869812
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Coder.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

namespace PetrKnap\Binary;

/**
* @internal shared logic
*/
abstract class Coder
{
final public function __construct(
Expand Down
3 changes: 3 additions & 0 deletions src/Coder/Coder.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

use Throwable;

/**
* @internal shared logic
*/
abstract class Coder implements CoderInterface
{
public function encode(string $decoded): string
Expand Down
3 changes: 3 additions & 0 deletions src/Serializer/Serializer.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

use Throwable;

/**
* @internal shared logic
*/
abstract class Serializer implements SerializerInterface
{
public function serialize(mixed $serializable): string
Expand Down

0 comments on commit 4869812

Please sign in to comment.