public function initializeProject()

in src/Utils/WordPress/Project.php [55:70]


    public function initializeProject($dir = '')
    {
        if (empty($dir)) {
            $dir = $this->promptForProjectDir();
        } else {
            $dir = $this->validateProjectDir($dir);
        }

        $this->dir = $dir;
        if (empty($this->wordPressDir)) {
            $this->wordPressDir = $dir;
        }
        $this->report();

        return $this->getDir();
    }