We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cb98c8 commit bafadd9Copy full SHA for bafadd9
1 file changed
RoboFile.php
@@ -12,6 +12,7 @@ class RoboFile extends \Robo\Tasks
12
const REPO_BLOB_URL = 'https://github.com/Codeception/Codeception/blob';
13
const BRANCH_4x = '4.2';
14
const BRANCH_5x = '5.1';
15
+ const BRANCH_MAIN = 'main';
16
17
function post()
18
{
@@ -263,7 +264,7 @@ public function buildDocsExtensions()
263
264
->prepend("# Official Extensions\n")
265
->processClassSignature(function (ReflectionClass $r, $text) {
266
$name = $r->getShortName();
- return "## $name\n\n[See Source](" . self::REPO_BLOB_URL . "/" . self::BRANCH_5x . "/ext/$name.php)";
267
+ return "## $name\n\n[See Source](" . self::REPO_BLOB_URL . "/" . self::BRANCH_MAIN . "/ext/$name.php)";
268
})
269
->filterMethods(function (ReflectionMethod $r) {
270
return false;
0 commit comments