Skip to content

Commit

Permalink
chore: improved code style
Browse files Browse the repository at this point in the history
  • Loading branch information
petrknap committed Apr 1, 2024
1 parent 2b5d424 commit 2153ae4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/Coder/Coder.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ public function decode(string $encoded): string
/**
* @throws Throwable
*/

abstract protected function doEncode(string $decoded): string;

/**
Expand Down
2 changes: 2 additions & 0 deletions src/Exception/CouldNotProcessData.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
use Throwable;

/**
* @todo move to Shorts
*
* @template TData of mixed
*/
abstract class CouldNotProcessData extends RuntimeException implements BinaryException
Expand Down
3 changes: 2 additions & 1 deletion src/Serializer/Igbinary.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
use PetrKnap\Shorts\HasRequirements;

/**
* @link https://www.php.net/manual/en/book.igbinary.php
* @see igbinary_serialize()
* @see igbinary_unserialize()
*/
final class Igbinary extends Serializer implements HasRequirements
{
Expand Down

0 comments on commit 2153ae4

Please sign in to comment.