Skip to content

Commit

Permalink
upd plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
jeyroik committed Jun 5, 2020
1 parent 12a0b14 commit 9b9395e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/plugins/install/InstallFieldsSamples.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class InstallFieldsSamples extends InstallSection
{
protected string $selfSection = 'fields_samples';
protected string $selfName = 'field sample';
protected string $selfRepositoryClass = IFieldSampleRepository::class;
protected string $selfRepositoryClass = 'fieldSampleRepository';
protected string $selfUID = FieldSample::FIELD__NAME;
protected string $selfItemClass = FieldSample::class;
}
2 changes: 1 addition & 1 deletion src/components/plugins/install/InstallFieldsTypes.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class InstallFieldsTypes extends InstallSection
{
protected string $selfSection = 'fields_types';
protected string $selfName = 'field type';
protected string $selfRepositoryClass = IFieldTypeRepository::class;
protected string $selfRepositoryClass = 'fieldTypeRepository';
protected string $selfUID = FieldType::FIELD__NAME;
protected string $selfItemClass = FieldType::class;
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class InstallFieldsTypesSamples extends InstallSection
{
protected string $selfSection = 'fields_types_samples';
protected string $selfName = 'field type sample';
protected string $selfRepositoryClass = IFieldTypeSampleRepository::class;
protected string $selfRepositoryClass = 'fieldTypeSampleRepository';
protected string $selfUID = FieldTypeSample::FIELD__NAME;
protected string $selfItemClass = FieldTypeSample::class;
}

0 comments on commit 9b9395e

Please sign in to comment.