File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ class HTTPRequest implements Comparable
58
58
public $ body = NULL ;
59
59
60
60
/**
61
- * Identifier for the request
61
+ * Identifier for the request.
62
62
*
63
63
* @var string
64
64
*/
@@ -90,9 +90,9 @@ public function __construct(&$parent)
90
90
*/
91
91
public function parse ($ object )
92
92
{
93
- $ this ->id = md5 (microtime ());
93
+ $ this ->id = md5 (microtime ());
94
94
$ this ->method = $ object ->attributes ->method ;
95
- $ this ->title = isset ($ object ->meta ->title ) ? $ object ->meta ->title : NULL ;
95
+ $ this ->title = isset ($ object ->meta ->title ) ? $ object ->meta ->title : NULL ;
96
96
97
97
if (($ this ->method === 'POST ' || $ this ->method === 'PUT ' ) && !empty ($ object ->content )) {
98
98
foreach ($ object ->content as $ value ) {
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ class HTTPResponse implements Comparable
29
29
public $ description ;
30
30
31
31
/**
32
- * Identifier for the request
32
+ * Identifier for the request.
33
33
*
34
34
* @var string
35
35
*/
Original file line number Diff line number Diff line change @@ -151,8 +151,9 @@ public function parse($object)
151
151
* @param string $base_url the URL to which the URL variables apply
152
152
* @param bool $clean Get the URL without HTML
153
153
*
154
- * @return string a HTML representation of the transition URL
155
154
* @throws \QL\UriTemplate\Exception
155
+ *
156
+ * @return string a HTML representation of the transition URL
156
157
*/
157
158
public function build_url ($ base_url = '' , $ clean = FALSE )
158
159
{
You can’t perform that action at this time.
0 commit comments