1<?php
2
3/* Copyright (c) 2015 Richard Klees <richard.klees@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4/* Copyright (c) 2016 Timon Amstutz <timon.amstutz@ilub.unibe.ch> Extended GPL, see docs/LICENSE */
5
6/**
7 * Class ilSystemStylesLanguageMock
8 */
9class ilSystemStylesLanguageMock
10{
11    public $requested = array();
12
13    /**
14     * ilSystemStylesLanguageMock constructor.
15     */
16    public function __construct()
17    {
18    }
19
20    /**
21     * @param $a_topic
22     * @return mixed
23     */
24    public function txt($a_topic)
25    {
26        $this->requested[] = $a_topic;
27        return $a_topic;
28    }
29}
30