Skip to content

Commit

Permalink
php documentor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
natepixel committed Jan 31, 2012
1 parent d00cf15 commit 23cf898
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
12 changes: 10 additions & 2 deletions reason_4.0/lib/core/classes/api/api.php
@@ -1,4 +1,14 @@
<?php
/**
* Reason API Class
*
* @package classes
* @subpackage api
*/

/**
* Include dependencies
*/
include_once('reason_header.php');
include_once(CARL_UTIL_INC . 'api/api.php');

Expand All @@ -18,8 +28,6 @@
*
* @version .1
* @author Nathan White
* @package classes
* @subpackage api
*/
final class ReasonAPI extends CarlUtilAPI
{
Expand Down
14 changes: 13 additions & 1 deletion reason_4.0/lib/core/classes/api/factory.php
@@ -1,4 +1,14 @@
<?php
/**
* Reason API Factory Class
*
* @package classes
* @subpackage api
*/

/**
* Include dependencies
*/
include_once('reason_header.php');
reason_include_once('classes/api/api.php');
reason_include_once('classes/page_types.php');
Expand All @@ -7,7 +17,9 @@
* Provides methods to get ReasonAPI objects, and several convenience methods.
*
* - Determines which region to run based upon a request for an API and (optional) module identifier.
* - Provides a static method to get a unique identifier for a module on its params.
* - Provides a static method to get a unique identifier for a module on its params.
*
* @author Nathan White
*/
class ReasonAPIFactory
{
Expand Down

0 comments on commit 23cf898

Please sign in to comment.