You are here

protected static function App::propertyToBaseFieldBlackList in Apigee Edge 8

Array of properties that should not be exposed as base fields by default.

Return value

string[] Array with property names.

Overrides FieldableEdgeEntityBase::propertyToBaseFieldBlackList

File

src/Entity/App.php, line 379

Class

App
Base class for App Drupal entities.

Namespace

Drupal\apigee_edge\Entity

Code

protected static function propertyToBaseFieldBlackList() : array {
  return array_merge(parent::propertyToBaseFieldBlackList(), [
    // We expose credentials as a pseudo field.
    'credentials',
  ]);
}