return self::GITHUB_BASE_LINK .
$relativePath;
} /**
* @return list<class-string<object>>
*/
private function findScriptServices(): array
{ $scriptServices =
[];
$shopwareClasses = ConstructFinder::
locatedIn(__DIR__ . '/../../../..'
) ->
exclude('*/Test/*', '*/vendor/*', '*/DevOps/StaticAnalyze*'
) ->
findClassNames();
foreach ($shopwareClasses as $class) { if (!
class_exists($class)) { // skip not autoloadable test classes
continue;
} $reflection =
new \
ReflectionClass($class);