mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Tidied up file endings and spaces between methods
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@43894 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
0eafb6d08e
commit
15837d7775
@ -1,5 +1,4 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* RSSFeed class
|
||||
*
|
||||
@ -70,7 +69,6 @@ class RSSFeed extends ViewableData {
|
||||
*/
|
||||
protected $etag;
|
||||
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
@ -107,7 +105,6 @@ class RSSFeed extends ViewableData {
|
||||
$this->etag = $etag;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Include an link to the feed
|
||||
*
|
||||
@ -121,7 +118,6 @@ class RSSFeed extends ViewableData {
|
||||
'" href="' . $url . '" />');
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get the RSS feed entries
|
||||
*
|
||||
@ -137,7 +133,6 @@ class RSSFeed extends ViewableData {
|
||||
return $output;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get the title of thisfeed
|
||||
*
|
||||
@ -147,7 +142,6 @@ class RSSFeed extends ViewableData {
|
||||
return $this->title;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get the URL of this feed
|
||||
*
|
||||
@ -157,7 +151,6 @@ class RSSFeed extends ViewableData {
|
||||
return Director::absoluteURL($this->link);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get the description of this feed
|
||||
*
|
||||
@ -167,7 +160,6 @@ class RSSFeed extends ViewableData {
|
||||
return $this->description;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Output the feed to the browser
|
||||
*/
|
||||
@ -187,8 +179,6 @@ class RSSFeed extends ViewableData {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* RSSFeed_Entry class
|
||||
*
|
||||
@ -226,7 +216,6 @@ class RSSFeed_Entry extends ViewableData {
|
||||
*/
|
||||
protected $authorField;
|
||||
|
||||
|
||||
/**
|
||||
* Create a new RSSFeed entry.
|
||||
*/
|
||||
@ -238,7 +227,6 @@ class RSSFeed_Entry extends ViewableData {
|
||||
$this->authorField = $authorField;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get the description of this entry
|
||||
*
|
||||
@ -249,7 +237,6 @@ class RSSFeed_Entry extends ViewableData {
|
||||
return $this->failover->obj($this->titleField);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get the description of this entry
|
||||
*
|
||||
@ -260,7 +247,6 @@ class RSSFeed_Entry extends ViewableData {
|
||||
return $this->failover->obj($this->descriptionField);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get the author of this entry
|
||||
*
|
||||
@ -271,7 +257,6 @@ class RSSFeed_Entry extends ViewableData {
|
||||
return $this->failover->obj($this->authorField);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get a link to this entry
|
||||
*
|
||||
@ -281,6 +266,4 @@ class RSSFeed_Entry extends ViewableData {
|
||||
return $this->failover->AbsoluteLink();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
?>
|
Loading…
Reference in New Issue
Block a user