summaryrefslogtreecommitdiff
path: root/vendor/symfony/http-kernel/Tests/Exception/MethodNotAllowedHttpExceptionTest.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2019-02-03 13:44:03 +0000
committerGreg Roach <fisharebest@webtrees.net>2019-02-04 11:17:33 +0000
commit7def76c7d817a9ec81e9ae4a03a850514b1a2e1c (patch)
tree3fcf7e8236356daac44f7c17b8c0c5bc736a0926 /vendor/symfony/http-kernel/Tests/Exception/MethodNotAllowedHttpExceptionTest.php
parentadfb3656b8dac8505590490f4f8aaf4bea27881b (diff)
downloadwebtrees-7def76c7d817a9ec81e9ae4a03a850514b1a2e1c.tar.gz
webtrees-7def76c7d817a9ec81e9ae4a03a850514b1a2e1c.tar.bz2
webtrees-7def76c7d817a9ec81e9ae4a03a850514b1a2e1c.zip
Working on upgrade wizard and testing
Diffstat (limited to 'vendor/symfony/http-kernel/Tests/Exception/MethodNotAllowedHttpExceptionTest.php')
-rw-r--r--vendor/symfony/http-kernel/Tests/Exception/MethodNotAllowedHttpExceptionTest.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/vendor/symfony/http-kernel/Tests/Exception/MethodNotAllowedHttpExceptionTest.php b/vendor/symfony/http-kernel/Tests/Exception/MethodNotAllowedHttpExceptionTest.php
index ea82014952..991f97582d 100644
--- a/vendor/symfony/http-kernel/Tests/Exception/MethodNotAllowedHttpExceptionTest.php
+++ b/vendor/symfony/http-kernel/Tests/Exception/MethodNotAllowedHttpExceptionTest.php
@@ -8,17 +8,17 @@ class MethodNotAllowedHttpExceptionTest extends HttpExceptionTest
{
public function testHeadersDefault()
{
- $exception = new MethodNotAllowedHttpException(array('GET', 'PUT'));
- $this->assertSame(array('Allow' => 'GET, PUT'), $exception->getHeaders());
+ $exception = new MethodNotAllowedHttpException(['GET', 'PUT']);
+ $this->assertSame(['Allow' => 'GET, PUT'], $exception->getHeaders());
}
public function testWithHeaderConstruct()
{
- $headers = array(
+ $headers = [
'Cache-Control' => 'public, s-maxage=1200',
- );
+ ];
- $exception = new MethodNotAllowedHttpException(array('get'), null, null, null, $headers);
+ $exception = new MethodNotAllowedHttpException(['get'], null, null, null, $headers);
$headers['Allow'] = 'GET';
@@ -30,7 +30,7 @@ class MethodNotAllowedHttpExceptionTest extends HttpExceptionTest
*/
public function testHeadersSetter($headers)
{
- $exception = new MethodNotAllowedHttpException(array('GET'));
+ $exception = new MethodNotAllowedHttpException(['GET']);
$exception->setHeaders($headers);
$this->assertSame($headers, $exception->getHeaders());
}