Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
TokenWebSourceService
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 2
6
0.00% covered (danger)
0.00%
0 / 1
 spawnTokenWebsource
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 getServiceManager
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/**
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; under version 2
8 * of the License (non-upgradable).
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18 *
19 * Copyright (c) 2016-2018 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
20 *
21 */
22
23namespace oat\tao\model\websource;
24
25use oat\oatbox\filesystem\FileSystemService;
26use oat\oatbox\service\ServiceManager;
27
28/**
29 * Grants Access to compiled data via the MVC
30 *
31 * @access public
32 * @author Antoine Robin, <antoine@taotesting.com>
33 * @package tao
34
35 * @license GPLv2  http://www.opensource.org/licenses/gpl-2.0.php
36 */
37class TokenWebSourceService
38{
39    /**
40     * @param $fileSystemId
41     * @return FlyTokenWebSource
42     */
43    public static function spawnTokenWebsource($fileSystemId)
44    {
45
46        /** @var FileSystemService $fsService */
47        $websource = FlyTokenWebSource::spawnWebsource($fileSystemId, '');
48
49        return $websource;
50    }
51
52    public static function getServiceManager()
53    {
54        return ServiceManager::getServiceManager();
55    }
56}