diff --git a/README.md b/README.md index cda77ab..3d6a743 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,8 @@ Lib for parsing whois response. It takes response from any whois server and return object with structured data. ## Example +([more detailed example](https://github.com/shapito27/whois/blob/main/tests/WhoisParserTest.php)) + **Input**: response of shell command ```whois facebook.com``` pass as ```$whoisText``` ``` $parser = new WhoisParser($whoisText); diff --git a/tests/WhoisParserTest.php b/tests/WhoisParserTest.php index dbd91c0..35cbb22 100644 --- a/tests/WhoisParserTest.php +++ b/tests/WhoisParserTest.php @@ -159,6 +159,5 @@ public function testParsing() $parser = new WhoisParser($whoisText); $whoisObject = $parser->run(); self::assertTrue($whoisObject->isRegistered()); - var_dump($whoisObject); } } \ No newline at end of file