Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 27 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
QtiServiceProvider | |
0.00% |
0 / 27 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
__invoke | |
0.00% |
0 / 27 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | /** |
4 | * This program is free software; you can redistribute it and/or |
5 | * modify it under the terms of the GNU General Public License |
6 | * as published by the Free Software Foundation; under version 2 |
7 | * of the License (non-upgradable). |
8 | * |
9 | * This program is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 | * GNU General Public License for more details. |
13 | * |
14 | * You should have received a copy of the GNU General Public License |
15 | * along with this program; if not, write to the Free Software |
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
17 | * |
18 | * Copyright (c) 2024 (original work) Open Assessment Technologies SA. |
19 | */ |
20 | |
21 | declare(strict_types=1); |
22 | |
23 | namespace oat\taoQtiItem\model\qti\ServiceProvider; |
24 | |
25 | use oat\generis\model\DependencyInjection\ContainerServiceProviderInterface; |
26 | use oat\oatbox\log\LoggerService; |
27 | use oat\taoQtiItem\model\Export\Qti3Package\ExporterFactory; |
28 | use oat\taoQtiItem\model\Export\Qti3Package\Qti3XsdValidator; |
29 | use oat\taoQtiItem\model\Export\Qti3Package\TransformationService; |
30 | use oat\taoQtiItem\model\qti\converter\CaseConversionService; |
31 | use oat\taoQtiItem\model\qti\converter\ItemConverter; |
32 | use oat\taoQtiItem\model\qti\converter\ManifestConverter; |
33 | use oat\taoQtiItem\model\qti\Identifier\Service\QtiIdentifierSetter; |
34 | use oat\taoQtiItem\model\qti\Service; |
35 | use oat\taoQtiItem\model\ValidationService; |
36 | use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; |
37 | |
38 | use function Symfony\Component\DependencyInjection\Loader\Configurator\service; |
39 | |
40 | class QtiServiceProvider implements ContainerServiceProviderInterface |
41 | { |
42 | public function __invoke(ContainerConfigurator $configurator): void |
43 | { |
44 | $services = $configurator->services(); |
45 | |
46 | $services |
47 | ->set(QtiIdentifierSetter::class, QtiIdentifierSetter::class) |
48 | ->args([ |
49 | service(Service::class), |
50 | service(LoggerService::SERVICE_ID), |
51 | ]); |
52 | |
53 | $services->set(Qti3XsdValidator::class, Qti3XsdValidator::class)->args([ |
54 | service(ValidationService::class), |
55 | ])->public(); |
56 | |
57 | $services->set(TransformationService::class, TransformationService::class)->args([ |
58 | service(Qti3XsdValidator::class), |
59 | ])->public(); |
60 | |
61 | $services->set(ExporterFactory::class, ExporterFactory::class) |
62 | ->args([ |
63 | service(TransformationService::class), |
64 | ])->public(); |
65 | |
66 | $services->set(CaseConversionService::class); |
67 | |
68 | $services |
69 | ->set(ManifestConverter::class, ManifestConverter::class) |
70 | ->public(); |
71 | |
72 | $services->set(ItemConverter::class) |
73 | ->args([ |
74 | service(CaseConversionService::class), |
75 | service(ValidationService::SERVICE_ID) |
76 | ]) |
77 | ->public(); |
78 | } |
79 | } |