Eloquence\Behaviours\CamelCasing::__unset PHP Method

__unset() public method

Because we are changing the case of keys and want to use camelCase throughout the application, whenever we do unset variables we need to ensure that we unset using snake_case.
public __unset ( $key ) : void
$key
return void
    public function __unset($key)
    {
        return parent::__unset($this->getSnakeKey($key));
    }