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
Updating from version 3 to version 4, I got the following exception:
In AnnotationLineConfigurator.php line 18: [Error] Typed property MyBuilder\Bundle\CronosBundle\Annotation\Cron::$hour must not be accessed before initialization
In AnnotationLineConfigurator.php line 18:
[Error] Typed property MyBuilder\Bundle\CronosBundle\Annotation\Cron::$hour must not be accessed before initialization
This is because now the property is typed and has no default value. So, the following annotation stops working: @Cron(minute="/15")
@Cron(minute="/15")
I worked around it by explicating a * value for the hour, but this should made back-compatible OR noted in a changelog file.
*
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Updating from version 3 to version 4, I got the following exception:
This is because now the property is typed and has no default value.
So, the following annotation stops working:
@Cron(minute="/15")
I worked around it by explicating a
*
value for the hour, but this should made back-compatible OR noted in a changelog file.The text was updated successfully, but these errors were encountered: