-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
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
make doSaveDependingOnFiles nullable again #25
Conversation
255ea03
to
28360cd
Compare
request-checks: true
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nullable fix is OK. But class aliases should not be in this. Please remove that so I can merge this.
src/DI/ClassAliasMap.php
Outdated
@@ -3,6 +3,6 @@ | |||
declare(strict_types = 1); | |||
|
|||
return [ | |||
\Kdyby\DoctrineCache\NotImplementedException::class => \Kdyby\DoctrineCache\Exception\NotImplementedException::class, | |||
\Kdyby\DoctrineCache\Exception::class => \Kdyby\DoctrineCache\Exception\Exception::class, | |||
\Kdyby\DoctrineCache\Exception\NotImplementedException::class => \Kdyby\DoctrineCache\Exception\NotImplementedException::class, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should not be here. You are aliasing same class name. This is here just to provide backwards compatibility for renamed namespaced class \Kdyby\DoctrineCache\NotImplementedException
src/DI/ClassAliasMap.php
Outdated
\Kdyby\DoctrineCache\NotImplementedException::class => \Kdyby\DoctrineCache\Exception\NotImplementedException::class, | ||
\Kdyby\DoctrineCache\Exception::class => \Kdyby\DoctrineCache\Exception\Exception::class, | ||
\Kdyby\DoctrineCache\Exception\NotImplementedException::class => \Kdyby\DoctrineCache\Exception\NotImplementedException::class, | ||
\Throwable::class => \Throwable::class, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here
Hello, sorry for inconvenience. Should be OK now. |
No worries :). Merging |
Can this be tagged, please? |
addresses #23