From 1ce68f274e67a5c8ac9a8c303703d95adcfbb6cd Mon Sep 17 00:00:00 2001 From: Daniel Haaker Date: Fri, 22 Jun 2018 10:51:18 +0200 Subject: [PATCH] Fix missing import in template Atlas\Table\Row is used as typehint, but is not imported in Type.tpl --- resources/templates/Type.tpl | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/templates/Type.tpl b/resources/templates/Type.tpl index ba2c1d3..164e674 100644 --- a/resources/templates/Type.tpl +++ b/resources/templates/Type.tpl @@ -4,6 +4,7 @@ declare(strict_types=1); namespace {NAMESPACE}\{TYPE}; use Atlas\Mapper\Mapper; +use Atlas\Table\Row; /** * @method {TYPE}Table getTable()