Skip to content

Commit

Permalink
Tweaking PHPDocs for CLogRoute
Browse files Browse the repository at this point in the history
  • Loading branch information
acorncom committed Oct 1, 2012
1 parent 760204d commit 6ed74e7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion framework/logging/CLogRoute.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -40,11 +40,12 @@ abstract class CLogRoute extends CComponent
public $levels=''; public $levels='';
/** /**
* @var mixed array of categories, or string list separated by comma or space. * @var mixed array of categories, or string list separated by comma or space.
* Defaults to empty, meaning all categories. * Defaults to empty array, meaning all categories.
*/ */
public $categories=array(); public $categories=array();
/** /**
* @var mixed array of categories, or string list separated by comma or space, to EXCLUDE from logs. * @var mixed array of categories, or string list separated by comma or space, to EXCLUDE from logs.
* Defaults to empty array, meaning no categories are excluded.
* This will exclude any categories after $categories has been ran * This will exclude any categories after $categories has been ran
*/ */
public $except=array(); public $except=array();
Expand Down

0 comments on commit 6ed74e7

Please sign in to comment.