| // | Jens Bierkandt | // +----------------------------------------------------------------------+ // // $Id: error_reporting(E_ALL|E_STRICT); require_once 'PHP/Beautifier.php'; require_once 'PHP/Beautifier/Batch.php'; $oBeaut = new PHP_Beautifier(); $oBatch = new PHP_Beautifier_Batch($oBeaut); $oBatch->addFilter('ArrayNested'); $oBatch->addFilter('Pear'); $oBatch->addFilter('NewLines', array( 'before' => 'if:switch:T_CLASS:function:T_COMMENT:', 'after' =>'if:T_ENDIF:}' ) ); $oBatch->setInputFile($argv[1]); $oBatch->process(); if (php_sapi_name()=='cli') { $oBatch->show(); } else { echo '
'.$oBatch->show().'
'; }