コード例 #1
0
ファイル: Parse.php プロジェクト: rhysr/Docblox
 /**
  * Configuration override for setting the parser visibility
  *
  * By default it will use the command line options first, and then
  * look at the config file if no options have been supplied
  *
  * @return string
  */
 public function getVisibility()
 {
     if (parent::getVisibility() !== null) {
         return parent::getVisibility();
     }
     return DocBlox_Core_Abstract::config()->get('visibility');
 }