Skip to content

Commit

Permalink
Merge pull request #29 from localheinz/fix/docblock
Browse files Browse the repository at this point in the history
Fix: Add missing docblock
  • Loading branch information
localheinz authored Jan 27, 2018
2 parents b0f4e21 + 9de6cba commit 49459a1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/PrinterInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,13 @@

interface PrinterInterface
{
/**
* @param string $json
* @param string $indent
*
* @throws \InvalidArgumentException
*
* @return string
*/
public function print(string $json, string $indent = ' '): string;
}

0 comments on commit 49459a1

Please sign in to comment.