diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-10-27 13:28:51 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-10-27 13:28:51 +0200 |
commit | 3e9d2b8ae82948de3c83bd5a50151949f6e6ca90 (patch) | |
tree | 8dcf5ec82b53b67ff43967b77a806d8a0a4fadc3 /system/core/Model.php | |
parent | 7d753464d13f3a3326a1679226127570cc0c498f (diff) |
Docblock improvements
Diffstat (limited to 'system/core/Model.php')
-rw-r--r-- | system/core/Model.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/system/core/Model.php b/system/core/Model.php index 9bc9f879f..5a87ab153 100644 --- a/system/core/Model.php +++ b/system/core/Model.php @@ -26,7 +26,7 @@ */ /** - * CodeIgniter Model Class + * Model Class * * @package CodeIgniter * @subpackage Libraries @@ -37,7 +37,7 @@ class CI_Model { /** - * Initialize CI_Model Class + * Class constructor * * @return void */ @@ -46,13 +46,15 @@ class CI_Model { log_message('debug', 'Model Class Initialized'); } + // -------------------------------------------------------------------- + /** - * __get + * __get magic * * Allows models to access CI's loaded classes using the same * syntax as controllers. * - * @param string + * @param string $key */ public function __get($key) { |