From 8d2869fb2d5376ccc8a4c9af4c287a41b7cb256d Mon Sep 17 00:00:00 2001 From: Aidan Casey Date: Tue, 1 Sep 2020 17:49:28 -0400 Subject: [PATCH] Fixed QueryBuilder reference in Service class template. --- .github/CHANGELOG.md | 12 +++++++++--- templates/Package/API/Service.php.twig | 2 +- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index a31acf3..c326e2e 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -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. @@ -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. @@ -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 diff --git a/templates/Package/API/Service.php.twig b/templates/Package/API/Service.php.twig index 9784f0c..a1ad86c 100644 --- a/templates/Package/API/Service.php.twig +++ b/templates/Package/API/Service.php.twig @@ -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 */