Skip to content

Commit

Permalink
Update beta for 3
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Erkelens committed Oct 7, 2017
1 parent e17ee00 commit cb53cd7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,6 @@

# 2.0.5
* Support dot notations in relations

# 3.0 beta-1
* Support for SilverStripe 4
2 changes: 1 addition & 1 deletion src/Generators/OrmTagGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ protected function generateBelongsToTags()
*/
protected function resolveDotNotation($dataObjectName)
{
list($dataObjectName) = explode(".", $dataObjectName, 2);
list($dataObjectName) = explode('.', $dataObjectName, 2);

return $dataObjectName;
}
Expand Down

0 comments on commit cb53cd7

Please sign in to comment.