-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
bugfix pri onAfter a onBefore #6
base: master
Are you sure you want to change the base?
Conversation
Hi. Thanks for PR. You've made a comple changes.
Could you please describe all these changes? |
[ | ||
'mode' => Expect::string(Config::MODE_TEST), | ||
'logFile' => Expect::string('%appDir/../log/deploy.log'), | ||
'tempDir' => Expect::string('%appDir/../temp'), |
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.
Default parameters in schema are not translated to their respective values. They should be added through $this->getContainerBuilder()->parameters
or logFile
and tempDir
should be ->required();
'colors' => Expect::bool(), | ||
] | ||
), | ||
'sections' => Expect::array(), |
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.
Expect::arrayOf()
-> merge into it Expect::structure
from validateSectionConfig
ping @kubomikita |
No description provided.