You are here

public function ArrayDeprecationWrapper::toRenderable in Entity Construction Kit (ECK) 8

Returns a render array representation of the object.

Return value

mixed[] A render array.

Overrides RenderableInterface::toRenderable

File

src/ArrayDeprecationWrapper.php, line 79

Class

ArrayDeprecationWrapper
Class ArrayDeprecationWrapper

Namespace

Drupal\eck

Code

public function toRenderable() {
  trigger_error($this->deprecationWarning, E_USER_DEPRECATED);
  return $this->wrappedArray;
}