Skip to content
This repository has been archived by the owner on May 12, 2018. It is now read-only.

Commit

Permalink
Added PHP file for testing against
Browse files Browse the repository at this point in the history
  • Loading branch information
davglass committed Jun 22, 2009
1 parent f900f98 commit 6920077
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions test/php/test.php
@@ -0,0 +1,53 @@
<?php
/**
* General Module description
* @module phptest
*/


/**
* General Class description
*
* @class Test
* @namespace PHP
* @constructor
**/
class Test {

/**
* Prop1 Description
* @property prop1
*/
$prop1 = null;

function Test() {
}

/**
* Update Description
* @method update
* @param array An array of components to load
*/
function update() {
}

/**
* Load Description
* @method load
* @param array An array of components to load
*/
function load() {
}

/**
* _priv Description
* @private
* @method _priv
* @param array An array of components to load
*/
function _priv() {
}

}

?>

0 comments on commit 6920077

Please sign in to comment.