You are here

EntityDecorator.php in Devel 4.x

File

webprofiler/src/Entity/EntityDecorator.php
View source
<?php

namespace Drupal\webprofiler\Entity;

use Drupal\webprofiler\Decorator;

/**
 * Class EntityDecorator.
 */
class EntityDecorator extends Decorator {

  /**
   * @var array
   */
  protected $entities;

  /**
   * @return mixed
   */
  public function getEntities() {
    return $this->entities;
  }

}

Classes

Namesort descending Description
EntityDecorator Class EntityDecorator.