Files
awo-hamburg-intranet/mysyde/common/traits/hasConfigTrait.php
2026-02-17 14:56:23 +01:00

18 lines
265 B
PHP

<?php
namespace DynCom\mysyde\common\traits;
/**
* Created by PhpStorm.
* User: Micha
* Date: 19.01.2015
* Time: 00:17
*/
trait hasConfigTrait {
protected $config;
public function getConfig() {
return $this->config;
}
}