FieldTypePluginManagerMock.php in Entity Construction Kit (ECK) 8
Namespace
Drupal\Tests\eck\Unit\TestDoublesFile
tests/src/Unit/TestDoubles/FieldTypePluginManagerMock.phpView source
<?php
namespace Drupal\Tests\eck\Unit\TestDoubles;
/**
* Mock implementation of FieldTypePluginManagerInterface.
*/
class FieldTypePluginManagerMock extends FieldTypePluginManagerDummy {
/**
* {@inheritdoc}
*/
public function getDefaultStorageSettings($type) {
return [];
}
/**
* {@inheritdoc}
*/
public function getDefaultFieldSettings($type) {
return [];
}
}
Classes
Name | Description |
---|---|
FieldTypePluginManagerMock | Mock implementation of FieldTypePluginManagerInterface. |