{"record":{"id":"28c00ebd0be24cfe","repo":"phacility/phabricator","slug":"the-empty-string-is-not-a-valid-repository-short-n","errorCode":null,"errorMessage":"The empty string is not a valid repository short name. Repository short names must be at least one character long.","messagePattern":"The empty string is not a valid repository short name\\. Repository short names must be at least one character long\\.","errorType":"validation","errorClass":"Exception","httpStatus":null,"severity":"error","filePath":"src/applications/repository/storage/PhabricatorRepository.php","lineNumber":372,"sourceCode":"        $name = $this->getCallsign();\n      }\n    }\n\n    return $name;\n  }\n\n  public static function isValidRepositorySlug($slug) {\n    try {\n      self::assertValidRepositorySlug($slug);\n      return true;\n    } catch (Exception $ex) {\n      return false;\n    }\n  }\n\n  public static function assertValidRepositorySlug($slug) {\n    if (!strlen($slug)) {\n      throw new Exception(\n        pht(\n          'The empty string is not a valid repository short name. '.\n          'Repository short names must be at least one character long.'));\n    }\n\n    if (strlen($slug) > 64) {\n      throw new Exception(\n        pht(\n          'The name \"%s\" is not a valid repository short name. Repository '.\n          'short names must not be longer than 64 characters.',\n          $slug));\n    }\n\n    if (preg_match('/[^a-zA-Z0-9._-]/', $slug)) {\n      throw new Exception(\n        pht(\n          'The name \"%s\" is not a valid repository short name. Repository '.\n          'short names may only contain letters, numbers, periods, hyphens '.","sourceCodeStart":354,"sourceCodeEnd":390,"githubUrl":"https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/repository/storage/PhabricatorRepository.php#L354-L390","documentation":"Error \"The empty string is not a valid repository short name. Repository short names must be at least one character long.\" thrown in phacility/phabricator.","triggerScenarios":"Thrown at src/applications/repository/storage/PhabricatorRepository.php:372 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"5720a38cfe95b00ca4be5016dd0d2f3195f4fa04","analyzedAt":"2026-08-21T05:07:25.672Z","schemaVersion":2},"datasetVersion":"2026-08-21T11:28:35.574Z"}