Kraken\Console\Server\Manager\ProjectManager::freeProject PHP Метод

freeProject() публичный Метод

Flush project data.
public freeProject ( ) : boolean
Результат boolean
    public function freeProject()
    {
        try {
            $this->data = $this->getEmptyStorage();
            $this->updateStorage();
        } catch (Error $ex) {
            return false;
        } catch (Exception $ex) {
            return false;
        }
        return true;
    }