Skip to content

Parable PHP Framework 0.12.10

Pre-release
Pre-release
Compare
Choose a tag to compare
@devvoh devvoh released this 09 Sep 13:10
· 161 commits to master since this release

Parable PHP Framework Changelog

0.12.10

Changes

  • \Parable\GetSet\Base also got some love. Now, like in \Parable\Framework\Config, it's possible to get nested array values with the dot-notation. To get $resource["one"]["two"], you can now use $config->get("one.two");. This of course works for all GetSet implementations, so also Post and Get. $getSet->remove() also supports this notation now.
  • \Parable\GetSet\Base can do the same with set now. So to set (and create all currently non-existing) nested keys, you can do this $config->set("one.two.three", "value");.
  • Since this copies the functionality already built into \Parable\Framework\Config, that class has now become an implementation of \Parable\GetSet\Base, making it all work exactly the same.