You are here

public function Mock::fieldInfoFields in Realistic Dummy Content 8.2

Same name and namespace in other branches
  1. 7.2 api/src/Framework/Mock.php \Drupal\realistic_dummy_content_api\Framework\Mock::fieldInfoFields()

File

api/src/Framework/Mock.php, line 58

Class

Mock
Represents a mock framework (experimental).

Namespace

Drupal\realistic_dummy_content_api\Framework

Code

public function fieldInfoFields() {
  return array(
    'some-field-name' => array(
      'node' => array(
        'article',
      ),
    ),
  );
}