Skip to content

Commit 910585d

Browse files
author
Martin Brecht-Precht
committed
Refactored the Request class.
1 parent fd4680d commit 910585d

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

src/Request/Request.php

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,30 @@ public function countAuthentications()
287287
return count($this->authentications);
288288
}
289289

290+
/**
291+
* @return string
292+
*/
293+
public function getEffectiveStatus()
294+
{
295+
return $this->effectiveStatus;
296+
}
297+
298+
/**
299+
* @return string
300+
*/
301+
public function getEffectiveEndpoint()
302+
{
303+
return $this->effectiveEndpoint;
304+
}
305+
306+
/**
307+
* @return Header[]
308+
*/
309+
public function getEffectiveHeaders()
310+
{
311+
return $this->effectiveHeaders;
312+
}
313+
290314
/**
291315
* @param resource $curl
292316
* @return $this

0 commit comments

Comments
 (0)