Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed QueryBuilder reference in Service class template. #9

Merged
merged 1 commit into from
Sep 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v1.0.0]
## [v1.0.1] - 2020-09-01

### Fixed
- References to the QueryBuilder in the Service class doc block.

## [v1.0.0] - 2020-09-01

### Added
- FileWriter classes which handle any interaction with files for this package.
Expand Down Expand Up @@ -32,7 +37,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Removed
- Docs directory. This belongs elsewhere.

## [v0.2.0]
## [v0.2.0] - 2020-08-25

### Added
- `count()` method on QueryBuilder classes.
Expand All @@ -43,11 +48,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Service classes return User Defined Fields as an array of UDF entities.

## [v0.1.0]
## [v0.1.0] - 2020-08-25

### Added
- Initial generator files

[v1.0.1]: https://github.com/Anteris-Dev/autotask-client-generator/compare/v1.0.0...v1.0.1
[v1.0.0]: https://github.com/Anteris-Dev/autotask-client-generator/compare/v0.2.0...v1.0.0
[v0.2.0]: https://github.com/Anteris-Dev/autotask-client-generator/compare/v0.1.0...v0.2.0
[v0.1.0]: https://github.com/Anteris-Dev/autotask-client-generator/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion templates/Package/API/Service.php.twig
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class {{ entityName.singular }}Service
/**
* Returns an instance of the query builder for this entity.
*
* @see {{ endpoint.singular }}QueryBuilder The query builder class.
* @see {{ entityName.singular }}QueryBuilder The query builder class.
*
* @author Aidan Casey <[email protected]>
*/
Expand Down