rename service name chill.custom_field_compiler to chill.custom_field.provider

This commit is contained in:
2014-11-08 12:02:12 +01:00
parent 99a88e8705
commit 8b71a9e7cf
3 changed files with 7 additions and 7 deletions

View File

@@ -27,7 +27,7 @@ class CustomFieldController extends Controller
//prepare form for new custom type
$fieldChoices = array();
foreach ($this->get('chill.custom_field_compiler')->getAllFields()
foreach ($this->get('chill.custom_field.provider')->getAllFields()
as $key => $customType) {
$fieldChoices[$key] = $customType->getName();
}