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
Issue is most likely related to #1315.
class C extends Phalcon\Config {} $c1 = new Phalcon\Config(array("a" => array("b" => 1))); $c2 = new C(array("a" => array("b" => 1))); die(var_dump( isset($c1->a->b), isset($c2->a->b) )); // Returns: // bool(true) // bool(false)
The text was updated successfully, but these errors were encountered:
Which version you are in? I test in 1.3.0 is ok.
Sorry, something went wrong.
1.3.0 built from ext
Merge pull request #1366 from sjinks/issue-1362
73288a1
Fix #1362
Please try now.
It works, thanks.
No branches or pull requests
Issue is most likely related to #1315.
The text was updated successfully, but these errors were encountered: