Skip to content

Commit d737051

Browse files
committed
Fix wrong variable name
1 parent a2db48a commit d737051

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG for WebfactoryWfdMetaBundle
22

3+
## Version 3.1.2
4+
5+
* Bugfix: Used wrong variable name in WfdTableResource
6+
37
## Version 3.1.1
48

59
* Made `webfactory_wfd_meta.doctrine_metadata_helper` service public again. MetaQuery instances need to perform a lazy lookup of this service in the DIC.

Config/WfdTableResource.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class WfdTableResource implements ResourceInterface, WfdMetaResource
2424

2525
public function __construct($tablename)
2626
{
27-
$this->tablename = $classname;
27+
$this->tablename = $tablename;
2828
}
2929

3030
public function register(MetaQuery $query)

0 commit comments

Comments
 (0)