mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fixed CS error
This commit is contained in:
parent
3ee9f97826
commit
2962b387d7
1 changed files with 1 additions and 1 deletions
|
@ -2457,7 +2457,7 @@ XML;
|
|||
$request = new CakeRequest('/posts/edit/1');
|
||||
$this->assertEmpty($request->data);
|
||||
|
||||
$_POST= array('foo' => 'bar');
|
||||
$_POST = array('foo' => 'bar');
|
||||
$_SERVER['HTTP_X_HTTP_METHOD_OVERRIDE'] = 'GET';
|
||||
$request = new CakeRequest('/posts/edit/1');
|
||||
$this->assertEmpty($request->data);
|
||||
|
|
Loading…
Reference in a new issue