We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Removing a value:
<?php /** @var Mediact\DataContainer\DataContainer $container */ $container->remove('categories.qux'); var_dump($container->has('categories.qux')); // false
The remove method also supports wildcards, for example remove('bar.*');
remove('bar.*')