Phrozn\Runner\CommandLine\Callback\Up::getPaths PHP Method

getPaths() private method

private getPaths ( )
    private function getPaths()
    {
        $in = $out = null;
        $in = $this->getPathArgument('in');
        $out = $this->getPathArgument('out');
        if (file_exists($in . DIRECTORY_SEPARATOR . '/.phrozn')) {
            return array($in . '/.phrozn/', $out . '/');
        } else {
            return array($in . '/', $out . '/');
        }
    }