コード例 #1
0
ファイル: GroupBy.php プロジェクト: sgdoc/sgdoce-codigo
 /**
  * Representação textual
  *
  * @return string
  * @throws IllegalArgumentException
  * */
 public function render()
 {
     $content = parent::render();
     IllegalArgumentException::throwsExceptionIfParamIsNull(self::T_COMMAND != $content, self::GROUPBY_UNAVAILABLE_COLUMN);
     return $content;
 }