aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Tests/Controller/RssControllerTest.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-04-13 09:43:14 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-04-13 09:43:14 +0200
commitf2e5fdc3666a2a6525b4202ab48df05efeebaf5c (patch)
treef559474e248a33c472fe0b260641866be5c0def3 /src/Wallabag/CoreBundle/Tests/Controller/RssControllerTest.php
parenta417b869237763ee115982d6367a82aa6174d74e (diff)
parent86732aa01cf0ad0fb5279f38ce75a9bedbbb66e1 (diff)
downloadwallabag-f2e5fdc3666a2a6525b4202ab48df05efeebaf5c.tar.gz
wallabag-f2e5fdc3666a2a6525b4202ab48df05efeebaf5c.tar.zst
wallabag-f2e5fdc3666a2a6525b4202ab48df05efeebaf5c.zip
Merge pull request #1916 from wallabag/cleanup
Convert array + phpDoc
Diffstat (limited to 'src/Wallabag/CoreBundle/Tests/Controller/RssControllerTest.php')
-rw-r--r--src/Wallabag/CoreBundle/Tests/Controller/RssControllerTest.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/RssControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/RssControllerTest.php
index 45a74c43..87a01b8e 100644
--- a/src/Wallabag/CoreBundle/Tests/Controller/RssControllerTest.php
+++ b/src/Wallabag/CoreBundle/Tests/Controller/RssControllerTest.php
@@ -34,17 +34,17 @@ class RssControllerTest extends WallabagCoreTestCase
34 34
35 public function dataForBadUrl() 35 public function dataForBadUrl()
36 { 36 {
37 return array( 37 return [
38 array( 38 [
39 '/admin/YZIOAUZIAO/unread.xml', 39 '/admin/YZIOAUZIAO/unread.xml',
40 ), 40 ],
41 array( 41 [
42 '/wallace/YZIOAUZIAO/starred.xml', 42 '/wallace/YZIOAUZIAO/starred.xml',
43 ), 43 ],
44 array( 44 [
45 '/wallace/YZIOAUZIAO/archives.xml', 45 '/wallace/YZIOAUZIAO/archives.xml',
46 ), 46 ],
47 ); 47 ];
48 } 48 }
49 49
50 /** 50 /**