Version 1
[yaffs-website] / web / modules / contrib / devel / webprofiler / src / Entity / EntityDecorator.php
1 <?php
2
3 namespace Drupal\webprofiler\Entity;
4
5 use Drupal\webprofiler\Decorator;
6
7 /**
8  * Class EntityDecorator
9  */
10 class EntityDecorator extends Decorator {
11
12   /**
13    * @var array
14    */
15   protected $entities;
16
17   /**
18    * @return mixed
19    */
20   public function getEntities() {
21     return $this->entities;
22   }
23   
24 }