Changes done for PhpDoc

This commit is contained in:
abraar
2011-01-28 14:16:58 +00:00
parent e21503b249
commit 22c8a3f4d3
6 changed files with 20 additions and 7 deletions

View File

@@ -23,11 +23,11 @@
*
* @author Alexandre Rosenfeld <alexandre@colosa.com>
* @package workflow-engine-bin-tasks
**/
*/
/* Get the size of the terminal (only works on Linux, on Windows it's always 80) */
preg_match_all("/rows.([0-9]+);.columns.([0-9]+);/", strtolower(exec('stty -a |grep columns')), $output);
if(sizeof($output) == 3) {
if(sizeof($output) == 3) {
define("COLUMNS", $output[2][0]);
} else {
define("COLUMNS", 80);