Skip to content

Commit

Permalink
#60: fix compilation error (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
UltimateModuleCreator authored Dec 14, 2020
1 parent ff720b7 commit 02fdb76
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 15 deletions.
8 changes: 8 additions & 0 deletions src/Umc/CoreBundle/Resources/views/help.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,14 @@
</tr>
</thead>
<tbody>
<tr>
<td colspan="3"><strong>4.3.1: December 14 2020</strong></td>
</tr>
<tr>
<th scope="row">1</th>
<td>Bug fix</td>
<td>Fix compilation error for new entities</td>
</tr>
<tr>
<td colspan="3"><strong>4.3.0: November 27th 2020</strong></td>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion src/Umc/CoreBundle/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

class Version
{
public const VERSION = '4.3.0';
public const VERSION = '4.3.1';
public const BUILD = '';

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,18 +128,4 @@ interface {{ entity.getNameSingular()|camel|ucfirst }}Interface extends Extensib
*/
public function getIsActive();
{% endif %}
/**
* Retrieve existing extension attributes object or create a new one.
*
* @return \{{ module.getNamespace() }}\{{ module.getModuleName() }}\Api\Data\{{ entity.getNameSingular()|camel|ucfirst }}ExtensionInterface|null
*/
public function getExtensionAttributes();
/**
* Set an extension attributes object.
*
* @param \{{ module.getNamespace() }}\{{ module.getModuleName() }}\Api\Data\{{ entity.getNameSingular()|camel|ucfirst }}ExtensionInterface $extensionAttributes
* @return $this
*/
public function setExtensionAttributes(\{{ module.getNamespace() }}\{{ module.getModuleName() }}\Api\Data\{{ entity.getNameSingular()|camel|ucfirst }}ExtensionInterface $extensionAttributes);
}

0 comments on commit 02fdb76

Please sign in to comment.