-
Notifications
You must be signed in to change notification settings - Fork 98
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
Support for nested parameters #54
base: master
Are you sure you want to change the base?
Conversation
} | ||
|
||
public function processFile(array $config) | ||
{ | ||
$config = $this->processConfig($config); | ||
|
||
$realFile = $config['file']; | ||
$realFile = $config['file']; |
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.
please don't align the =
signs. I don't follow this rule in my projects as I find it is a bad one. It forces to introduces useless git conflicts risks each time we add a longer variable name
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.
Fixed.
What is the status of this PR ? I think this will be useful for many people. |
@rgazelot it's not going to be merged IMO |
Can you explain why this will not be merged? Is there another way to use arrays as parameter values? |
No news ? |
+1 |
Just came across the same issue. Any suggestions? |
@stof What's the status with this PR, this is really useful. |
This PR provides a support for nested parameters. You can check out the demo to play with it.