MINOR Fixed @package declarations

This commit is contained in:
Ingo Schommer 2011-03-23 16:13:51 +13:00
parent b78b1309c9
commit 1225426e75
4 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
/** /**
* Anything that implements HiddenClass won't be shown in user-interface elements. For example, * Anything that implements HiddenClass won't be shown in user-interface elements. For example,
* DataObjects that implement HiddenClass won't be showing in the "new page" dropdown. * DataObjects that implement HiddenClass won't be showing in the "new page" dropdown.
* @package cms * @package sapphire
*/ */
interface HiddenClass { interface HiddenClass {

View File

@ -10,7 +10,7 @@
* @todo Character conversion * @todo Character conversion
* *
* @see http://rfc.net/rfc4180.html * @see http://rfc.net/rfc4180.html
* @package cms * @package sapphire
* @subpackage bulkloading * @subpackage bulkloading
* @author Ingo Schommer, Silverstripe Ltd. (<firstname>@silverstripe.com) * @author Ingo Schommer, Silverstripe Ltd. (<firstname>@silverstripe.com)
*/ */
@ -260,7 +260,7 @@ abstract class BulkLoader extends ViewableData {
* *
* @todo Refactor to support lazy-loaded DataObjectSets once they are implemented. * @todo Refactor to support lazy-loaded DataObjectSets once they are implemented.
* *
* @package cms * @package sapphire
* @subpackage bulkloading * @subpackage bulkloading
* @author Ingo Schommer, Silverstripe Ltd. (<firstname>@silverstripe.com) * @author Ingo Schommer, Silverstripe Ltd. (<firstname>@silverstripe.com)
*/ */

View File

@ -4,7 +4,7 @@
* Uses the fgetcsv() function to process CSV input. Accepts a file-handler as input. * Uses the fgetcsv() function to process CSV input. Accepts a file-handler as input.
* *
* @see http://rfc.net/rfc4180.html * @see http://rfc.net/rfc4180.html
* @package cms * @package sapphire
* @subpackage bulkloading * @subpackage bulkloading
* @author Ingo Schommer, Silverstripe Ltd. (<myfirstname>@silverstripe.com) * @author Ingo Schommer, Silverstripe Ltd. (<myfirstname>@silverstripe.com)
* *

View File

@ -3,7 +3,7 @@
* The Notifications class allows you to create email notifications for various events. * The Notifications class allows you to create email notifications for various events.
* It lets your scripts generate a number of notifications, and delay sending of the emails until * It lets your scripts generate a number of notifications, and delay sending of the emails until
* the end of execution, so that multiple notifications can collated together * the end of execution, so that multiple notifications can collated together
* @package cms * @package sapphire
*/ */
class Notifications extends Object { class Notifications extends Object {
protected static $events = array(); protected static $events = array();