class RuboCop::Cop::Chef::Deprecations::ExecutePathProperty

In Chef Infra Client 13 and later you must set path env vars in execute resources using the ‘environment` property not the legacy `path` property.

@example

### incorrect
execute 'some_cmd' do
  path '/foo/bar'
end

### correct
execute 'some_cmd' do
  environment {path: '/foo/bar'}
end