tool::man PHP Method

man() public method

print man
public man ( )
    function man()
    {
        ?>

CSSComb 2.14 (build 57f634a-1307080853)                Command line tool for resort CSS code.

SYNOPSIS
    $ php <?php 
        echo $this->argv[0];
        ?>
 -s <file with JSON array> -i <path to input css file> -o <path to result css file>

DESCRIPTION
    options:
    -s, --sort-order    specify file with custom sort order. File must contain JSON data.
    -i, --input         must be directory name or file that needs to be sorted
    -o, --output        sort result file. Use output when input is not a directory name, otherwise output param ignored. If output filename does not exist, the file is created. Otherwise, the existing file is overwritten.

    --help, -help, -h, -? or no options will print this man.

EXAMPLE
    <?php 
        echo $this->argv[0];
        ?>
 -s my-custom-sort-order.json -i css/style.css -o css/style-resorted.css

EXAMPLE 2
    <?php 
        echo $this->argv[0];
        ?>
 -i some_directory_name

SEE ALSO
    http://csscomb.com/

<?php 
    }