Skip to content

Commit 82a0f9c

Browse files
committed
- add new lines
1 parent 82e68ed commit 82a0f9c

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Simple and lightweight HTTP client based cURL",
44
"keywords": ["http client", "curl"],
55
"type": "library",
6-
"license": "Apache 2",
6+
"license": "Apache-2.0",
77
"authors": [
88
{
99
"name": "Askar Fuzaylov",

dHttp/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,4 +275,4 @@ public static function v($type = 'version')
275275
$info = curl_version();
276276
return array_key_exists($type, $info) ? $info[$type] : null;
277277
}
278-
}
278+
}

dHttp/Response.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,4 +152,4 @@ private function _parseHeaders($headers)
152152
}
153153
}
154154
}
155-
}
155+
}

dHttp/Url.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,4 @@ public static function cidr_match($ip, $ranges)
7979

8080
return false;
8181
}
82-
}
82+
}

example.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,4 @@
7171
/**
7272
* Get cURL version
7373
*/
74-
\dHttp\Client::v();
74+
\dHttp\Client::v();

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,4 @@ foreach($response_array as $item) {
8383

8484
```php
8585
\dHttp\Client::v();
86-
```
86+
```

0 commit comments

Comments
 (0)