lithium\tests\cases\console\command\RouteTest::_strip PHP Method

_strip() protected method

Remove formatting whitespace, tabs and newlines for better sourcecode readability.
protected _strip ( string $str ) : string
$str string A string from which to strip spaces
return string Returns the value of `$str` with all whitespace removed.
    protected function _strip($str)
    {
        return preg_replace('/\\s/', '', $str);
    }