Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 8
0.00% covered (danger)
0.00%
0 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
Group
0.00% covered (danger)
0.00%
0 / 8
0.00% covered (danger)
0.00%
0 / 3
42
0.00% covered (danger)
0.00%
0 / 1
 load
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
6
 isApplicable
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
12
 getOptionArguments
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
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) 2017 (original work) Open Assessment Technologies SA;
19 *
20 */
21
22namespace oat\tao\model\cliArgument\argument\implementation;
23
24use oat\oatbox\action\Action;
25use oat\tao\model\cliArgument\argument\Argument;
26use oat\tao\model\cliArgument\ArgumentLoader;
27
28class Group extends ArgumentLoader implements Argument
29{
30    /** @var Argument */
31    protected $argument = null;
32
33    /**
34     * Load the action with only one applicable argument, the first matched into isApplicable() method
35     *
36     * @param Action $action
37     */
38    public function load(Action $action)
39    {
40        if (! is_null($this->argument)) {
41            $this->argument->load($action);
42        }
43    }
44
45    /**
46     * Check if provided params fit into one of option arguments
47     * Only first applicable is taken under consideration
48     *
49     * @param array $params
50     * @return bool
51     */
52    public function isApplicable(array $params)
53    {
54        foreach ($this->getArguments() as $argument) {
55            if ($argument->isApplicable($params)) {
56                $this->argument = $argument;
57                return true;
58            }
59        }
60        return false;
61    }
62
63    /**
64     * Get all grouped arguments from options
65     *
66     * @return Argument[]
67     */
68    protected function getOptionArguments()
69    {
70        return $this->getOptions();
71    }
72}