Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
45969e35
Commit
45969e35
authored
Jan 25, 2012
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added render method to response class.
parent
37b5f614
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
5 deletions
+15
-5
response.php
laravel/response.php
+15
-5
No files found.
laravel/response.php
View file @
45969e35
...
...
@@ -214,18 +214,28 @@ class Response {
// Since this method is used by both the Route and Controller classes, it is
// a convenient spot to cast the application response to a string before it
// is returned to the main request handler.
$
content
=&
$response
->
content
;
$
response
->
render
()
;
if
(
is_object
(
$content
)
and
method_exists
(
$content
,
'__toString'
))
return
$response
;
}
/**
* Convert the content of the Response to a string and return it.
*
* @return string
*/
public
function
render
()
{
if
(
is_object
(
$this
->
content
)
and
method_exists
(
$this
->
content
,
'__toString'
))
{
$
content
=
$
content
->
__toString
();
$
this
->
content
=
$this
->
content
->
__toString
();
}
else
{
$
content
=
(
string
)
$
content
;
$
this
->
content
=
(
string
)
$this
->
content
;
}
return
$
response
;
return
$
this
->
content
;
}
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment