We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When adding the Versioned extension in code like
private static $extensions = [ Versioned::class . '.versioned' ];
I get the following error:
Class SilverStripe\Versioned\Versioned.versioned was not found while trying to analyse it - discovering symbols is probably not configured properly.
This can be fixed by defining an alias in bootstrap.php like:
class_alias(Versioned::class, Versioned::class . '.versioned'); Maybe those injector alias classes can be handled more elegantly.
The text was updated successfully, but these errors were encountered:
Extensions should be passed through injector
f53c605
This is a fix for syntro-opensource#24
Extensions should be passed through Injector to get the correct class
71377f4
This a fix for syntro-opensource#24
3c72e5d
No branches or pull requests
When adding the Versioned extension in code like
I get the following error:
This can be fixed by defining an alias in bootstrap.php like:
The text was updated successfully, but these errors were encountered: