Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c605d7f

Browse filesBrowse files
committed
[HttpFoundation] added some phpdoc
1 parent bfeb0e6 commit c605d7f
Copy full SHA for c605d7f

File tree

Expand file treeCollapse file tree

2 files changed

+27
-0
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+27
-0
lines changed

‎src/Symfony/Components/HttpFoundation/Request.php

Copy file name to clipboardExpand all lines: src/Symfony/Components/HttpFoundation/Request.php
+24Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,35 @@
2323
class Request
2424
{
2525
public $path;
26+
27+
/**
28+
* @var \Symfony\Components\HttpFoundation\ParameterBag
29+
*/
2630
public $request;
31+
32+
/**
33+
* @var \Symfony\Components\HttpFoundation\ParameterBag
34+
*/
2735
public $query;
36+
37+
/**
38+
* @var \Symfony\Components\HttpFoundation\ParameterBag
39+
*/
2840
public $server;
41+
42+
/**
43+
* @var \Symfony\Components\HttpFoundation\ParameterBag
44+
*/
2945
public $files;
46+
47+
/**
48+
* @var \Symfony\Components\HttpFoundation\ParameterBag
49+
*/
3050
public $cookies;
51+
52+
/**
53+
* @var \Symfony\Components\HttpFoundation\HeaderBag
54+
*/
3155
public $headers;
3256

3357
protected $languages;

‎src/Symfony/Components/HttpFoundation/Response.php

Copy file name to clipboardExpand all lines: src/Symfony/Components/HttpFoundation/Response.php
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
*/
2121
class Response
2222
{
23+
/**
24+
* @var \Symfony\Components\HttpFoundation\HeaderBag
25+
*/
2326
public $headers;
2427

2528
protected $content;

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.