implicit and $this->sectioned($key); } /** * Determine if a key is sectioned. * * @param string $key * @return bool */ protected function sectioned($key) { return str_contains($key, '::'); } /** * Get the section and key from a sectioned key. * * @param string $key * @return array */ protected function parse($key) { return explode('::', $key, 2); } }