We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d3bd1a commit 3d413edCopy full SHA for 3d413ed
2 files changed
src/IP.php
@@ -49,6 +49,7 @@ public function __toString()
49
/**
50
* @param string $ip
51
* @return IP
52
+ * @throws IpException
53
*/
54
public static function parse($ip)
55
{
src/Network.php
@@ -1,6 +1,7 @@
1
<?php
2
namespace IPTools;
3
4
+use IPTools\Exception\IpException;
5
use IPTools\Exception\NetworkException;
6
use ReturnTypeWillChange;
7
@@ -47,6 +48,7 @@ public function __toString()
47
48
* @param string $data
* @return Network
public static function parse(string $data)
0 commit comments