File tree Expand file tree Collapse file tree 4 files changed +8
-0
lines changed
src/Symfony/Component/BrowserKit Expand file tree Collapse file tree 4 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ UPGRADE FROM 4.2 to 4.3
4
4
BrowserKit
5
5
----------
6
6
7
+ * Marked ` Response ` final.
7
8
* Deprecated ` Response::buildHeader() `
8
9
* Deprecated ` Response::getStatus() ` , use ` Response::getStatusCode() ` instead
9
10
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ UPGRADE FROM 4.x to 5.0
4
4
BrowserKit
5
5
----------
6
6
7
+ * Removed the possibility to extend ` Response ` by making it final.
7
8
* Removed ` Response::buildHeader() `
8
9
* Removed ` Response::getStatus() ` , use ` Response::getStatusCode() ` instead
9
10
* The ` Client::submit() ` method has a new ` $serverParameters ` argument.
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ CHANGELOG
4
4
4.3.0
5
5
-----
6
6
7
+ * Marked ` Response ` final.
7
8
* Deprecated ` Response::buildHeader() `
8
9
* Deprecated ` Response::getStatus() ` , use ` Response::getStatusCode() ` instead
9
10
Original file line number Diff line number Diff line change 13
13
14
14
/**
15
15
* @author Fabien Potencier <fabien@symfony.com>
16
+ *
17
+ * @final since Symfony 4.3
16
18
*/
17
19
class Response
18
20
{
21
+ /** @internal */
19
22
protected $ content ;
23
+ /** @internal */
20
24
protected $ status ;
25
+ /** @internal */
21
26
protected $ headers ;
22
27
23
28
/**
You can’t perform that action at this time.
0 commit comments