Skip to content

Commit

Permalink
phpdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Jan 14, 2015
1 parent 2ef4791 commit 7a30c0a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
10 changes: 3 additions & 7 deletions kronolith/lib/CalendarsManager.php
@@ -1,7 +1,5 @@
<?php
/**
* Kronolith_CalendarsManager::
*
* Copyright 2013-2015 Horde LLC (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
Expand All @@ -16,11 +14,6 @@
/**
* Handles management of the various global calendar lists.
*
* Copyright 2013-2015 Horde LLC (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.horde.org/licenses/gpl.
*
* @author Michael J Rubinsky <mrubinsk@horde.org>
* @license http://www.horde.org/licenses/gpl GPL
* @package Kronolith
Expand Down Expand Up @@ -174,6 +167,7 @@ public function get($list)
return $this->_allResource;
}
return $this->_getAllResource();

case Kronolith::ALL_REMOTE_CALENDARS:
if ($this->_allRemote !== false) {
return $this->_allRemote;
Expand All @@ -199,11 +193,13 @@ public function get($list)
return $this->_displayExternal;
}
return $this->_getDisplayExternal();

case Kronolith::ALL_HOLIDAYS:
if ($this->_allHolidays !== false) {
return $this->_allHolidays;
}
return $this->_getAllHolidays();

case Kronolith::DISPLAY_HOLIDAYS:
if ($this->_displayHolidays !== false) {
return $this->_displayHolidays;
Expand Down
4 changes: 2 additions & 2 deletions kronolith/lib/Factory/Calendars.php
Expand Up @@ -35,9 +35,9 @@ public function __construct(Horde_Injector $injector)
}

/**
* Return a Kronolith_Calendars instance.
* Return a Kronolith_Calendars_Base instance.
*
* @return Kronolith_Calendars
* @return Kronolith_Calendars_Base
*/
public function create()
{
Expand Down
6 changes: 3 additions & 3 deletions kronolith/lib/Form/EditCalendar.php
@@ -1,15 +1,13 @@
<?php
/**
* Horde_Form for editing calendars.
*
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.horde.org/licenses/gpl.
*
* @package Kronolith
*/

/**
* The Kronolith_EditCalendarForm class provides the form for editing a
* The Kronolith_Form_EditCalendar class provides the form for editing a
* calendar.
*
* @author Chuck Hagenbuch <chuck@horde.org>
Expand All @@ -19,6 +17,8 @@ class Kronolith_Form_EditCalendar extends Horde_Form
{
/**
* Calendar being edited.
*
* @var Horde_Share_Object
*/
protected $_calendar;

Expand Down

0 comments on commit 7a30c0a

Please sign in to comment.