summaryrefslogtreecommitdiffstats
path: root/tests/unit/fetcher
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 18:19:23 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 18:19:23 +0200
commit66c73a96ac2dda076bcfe0dc0a1ca2a7e169149d (patch)
treedc0318fa459e4f313217ee38e4bc63524513d721 /tests/unit/fetcher
parentf5e64d35c05b14016eb4fffff7199386a97a9b43 (diff)
first try to set indention limit at 80 characters in php
Diffstat (limited to 'tests/unit/fetcher')
-rw-r--r--tests/unit/fetcher/FeedFetcherTest.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/unit/fetcher/FeedFetcherTest.php b/tests/unit/fetcher/FeedFetcherTest.php
index 6a0cec4dc..2d31fb18a 100644
--- a/tests/unit/fetcher/FeedFetcherTest.php
+++ b/tests/unit/fetcher/FeedFetcherTest.php
@@ -136,7 +136,8 @@ class FeedFetcherTest extends \PHPUnit_Framework_TestCase {
$this->title = 'my&amp;lt;&apos; title';
$this->guid = 'hey guid here';
$this->body = 'let the bodies hit the floor <a href="test">test</a>';
- $this->body2 = 'let the bodies hit the floor <a target="_blank" href="test">test</a>';
+ $this->body2 = 'let the bodies hit the floor ' .
+ '<a target="_blank" href="test">test</a>';
$this->pub = 23111;
$this->author = '&lt;boogieman';
$this->enclosureLink = 'http://enclosure.you';
@@ -232,7 +233,8 @@ class FeedFetcherTest extends \PHPUnit_Framework_TestCase {
}
- private function createItem($author=false, $enclosureType=null, $noPubDate=false) {
+ private function createItem($author=false, $enclosureType=null,
+ $noPubDate=false) {
$this->expectItem('get_permalink', $this->permalink);
$this->expectItem('get_title', $this->title);
$this->expectItem('get_id', $this->guid);