-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTaskRegistry.php
97 lines (90 loc) · 2.83 KB
/
TaskRegistry.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 2.0.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Console;
use Cake\Console\Exception\MissingTaskException;
use Cake\Core\App;
use Cake\Core\ObjectRegistry;
/**
* Registry for Tasks. Provides features
* for lazily loading tasks.
*
* @extends \Cake\Core\ObjectRegistry<\Cake\Console\Shell>
*/
class TaskRegistry extends ObjectRegistry
{
/**
* Shell to use to set params to tasks.
*
* @var \Cake\Console\Shell
*/
protected $_Shell;
/**
* Constructor
*
* @param \Cake\Console\Shell $shell Shell instance
*/
public function __construct(Shell $shell)
{
$this->_Shell = $shell;
}
/**
* Resolve a task classname.
*
* Part of the template method for Cake\Core\ObjectRegistry::load()
*
* @param string $class Partial classname to resolve.
* @return string|null Either the correct class name or null.
* @psalm-return class-string|null
*/
protected function _resolveClassName(string $class): ?string
{
return App::className($class, 'Shell/Task', 'Task');
}
/**
* Throws an exception when a task is missing.
*
* Part of the template method for Cake\Core\ObjectRegistry::load()
* and Cake\Core\ObjectRegistry::unload()
*
* @param string $class The classname that is missing.
* @param string $plugin The plugin the task is missing in.
* @return void
* @throws \Cake\Console\Exception\MissingTaskException
*/
protected function _throwMissingClassError(string $class, ?string $plugin): void
{
throw new MissingTaskException([
'class' => $class,
'plugin' => $plugin,
]);
}
/**
* Create the task instance.
*
* Part of the template method for Cake\Core\ObjectRegistry::load()
*
* @param string $class The classname to create.
* @param string $alias The alias of the task.
* @param array $config An array of settings to use for the task.
* @return \Cake\Console\Shell The constructed task class.
* @psalm-suppress MoreSpecificImplementedParamType
*/
protected function _create($class, string $alias, array $config): Shell
{
/** @var \Cake\Console\Shell */
return new $class($this->_Shell->getIo());
}
}