diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-04-27 16:45:43 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-04-27 16:45:43 +0200 |
commit | 2fbd57d6d58afd64caa841a876e9773272275526 (patch) | |
tree | 917b0b26bbd8bfdef11c35c8f5df90aab0475473 /system/libraries/Parser.php | |
parent | 8a6d16c62602d249d2e66356faf5e2f4b8470c9e (diff) | |
parent | 68f098142cb71f6a57f74ce34b5f58616cc1ed2f (diff) |
Merge pull request #1296 from timw4mail/library-cleanup
Library cleanup - adding additional docblocks
Diffstat (limited to 'system/libraries/Parser.php')
-rw-r--r-- | system/libraries/Parser.php | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/system/libraries/Parser.php b/system/libraries/Parser.php index d1b5b764b..c40f339b4 100644 --- a/system/libraries/Parser.php +++ b/system/libraries/Parser.php @@ -36,9 +36,25 @@ */ class CI_Parser { + /** + * Left delimeter character for psuedo vars + * + * @var string + */ public $l_delim = '{'; + + /** + * Right delimeter character for psuedo vars + * + * @var string + */ public $r_delim = '}'; - public $object; + + /** + * Reference to CodeIgniter instance + * + * @var object + */ protected $CI; /** |