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:
Matt Peel 2007-10-26 05:51:47 +00:00
parent 0eafb6d08e
commit 15837d7775

View File

@ -1,5 +1,4 @@
<?php <?php
/** /**
* RSSFeed class * RSSFeed class
* *
@ -70,7 +69,6 @@ class RSSFeed extends ViewableData {
*/ */
protected $etag; protected $etag;
/** /**
* Constructor * Constructor
* *
@ -107,7 +105,6 @@ class RSSFeed extends ViewableData {
$this->etag = $etag; $this->etag = $etag;
} }
/** /**
* Include an link to the feed * Include an link to the feed
* *
@ -121,7 +118,6 @@ class RSSFeed extends ViewableData {
'" href="' . $url . '" />'); '" href="' . $url . '" />');
} }
/** /**
* Get the RSS feed entries * Get the RSS feed entries
* *
@ -137,7 +133,6 @@ class RSSFeed extends ViewableData {
return $output; return $output;
} }
/** /**
* Get the title of thisfeed * Get the title of thisfeed
* *
@ -147,7 +142,6 @@ class RSSFeed extends ViewableData {
return $this->title; return $this->title;
} }
/** /**
* Get the URL of this feed * Get the URL of this feed
* *
@ -157,7 +151,6 @@ class RSSFeed extends ViewableData {
return Director::absoluteURL($this->link); return Director::absoluteURL($this->link);
} }
/** /**
* Get the description of this feed * Get the description of this feed
* *
@ -167,7 +160,6 @@ class RSSFeed extends ViewableData {
return $this->description; return $this->description;
} }
/** /**
* Output the feed to the browser * Output the feed to the browser
*/ */
@ -187,8 +179,6 @@ class RSSFeed extends ViewableData {
} }
} }
/** /**
* RSSFeed_Entry class * RSSFeed_Entry class
* *
@ -226,7 +216,6 @@ class RSSFeed_Entry extends ViewableData {
*/ */
protected $authorField; protected $authorField;
/** /**
* Create a new RSSFeed entry. * Create a new RSSFeed entry.
*/ */
@ -238,7 +227,6 @@ class RSSFeed_Entry extends ViewableData {
$this->authorField = $authorField; $this->authorField = $authorField;
} }
/** /**
* Get the description of this entry * Get the description of this entry
* *
@ -249,7 +237,6 @@ class RSSFeed_Entry extends ViewableData {
return $this->failover->obj($this->titleField); return $this->failover->obj($this->titleField);
} }
/** /**
* Get the description of this entry * Get the description of this entry
* *
@ -260,7 +247,6 @@ class RSSFeed_Entry extends ViewableData {
return $this->failover->obj($this->descriptionField); return $this->failover->obj($this->descriptionField);
} }
/** /**
* Get the author of this entry * Get the author of this entry
* *
@ -271,7 +257,6 @@ class RSSFeed_Entry extends ViewableData {
return $this->failover->obj($this->authorField); return $this->failover->obj($this->authorField);
} }
/** /**
* Get a link to this entry * Get a link to this entry
* *
@ -281,6 +266,4 @@ class RSSFeed_Entry extends ViewableData {
return $this->failover->AbsoluteLink(); return $this->failover->AbsoluteLink();
} }
} }
?> ?>