Total Complexity | 115 |
Total Lines | 717 |
Duplicated Lines | 0 % |
Changes | 0 |
Complex classes like Console often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Console, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
42 | class Console |
||
1 ignored issue
–
show
|
|||
43 | { |
||
44 | |||
45 | protected $app; |
||
46 | |||
47 | /** @var Command[] */ |
||
48 | protected $commands = []; |
||
49 | |||
50 | protected $wantHelps = false; |
||
51 | |||
52 | protected $catchExceptions = true; |
||
53 | protected $autoExit = true; |
||
54 | protected $definition; |
||
55 | protected $defaultCommand = 'list'; |
||
56 | |||
57 | protected $defaultCommands = [ |
||
58 | 'help' => Help::class, |
||
59 | 'list' => Lists::class, |
||
60 | 'build' => Build::class, |
||
61 | 'clear' => Clear::class, |
||
62 | 'make:command' => MakeCommand::class, |
||
63 | 'make:controller' => Controller::class, |
||
64 | 'make:model' => Model::class, |
||
65 | 'make:middleware' => Middleware::class, |
||
66 | 'make:validate' => Validate::class, |
||
67 | 'make:event' => Event::class, |
||
68 | 'make:listener' => Listener::class, |
||
69 | 'make:subscribe' => Subscribe::class, |
||
70 | 'optimize:config' => Config::class, |
||
71 | 'optimize:schema' => Schema::class, |
||
72 | 'optimize:route' => Route::class, |
||
73 | 'optimize:facade' => Facade::class, |
||
74 | 'run' => RunServer::class, |
||
75 | 'version' => Version::class, |
||
76 | 'route:list' => RouteList::class, |
||
77 | 'service:discover' => ServiceDiscover::class |
||
78 | ]; |
||
79 | |||
80 | /** |
||
81 | * 初始化器 |
||
82 | * @var array |
||
83 | */ |
||
84 | protected static $initializers = []; |
||
85 | |||
86 | public function __construct(App $app) |
||
87 | { |
||
88 | $this->app = $app; |
||
89 | |||
90 | $user = $this->app->config->get('console.user'); |
||
91 | |||
92 | if ($user) { |
||
93 | $this->setUser($user); |
||
94 | } |
||
95 | |||
96 | $this->definition = $this->getDefaultInputDefinition(); |
||
97 | |||
98 | //加载指令 |
||
99 | $this->loadCommands(); |
||
100 | |||
101 | $this->initialize(); |
||
102 | } |
||
103 | |||
104 | /** |
||
105 | * 添加初始化器 |
||
106 | * @param Closure $callback |
||
107 | */ |
||
108 | public static function init(Closure $callback) |
||
109 | { |
||
110 | static::$initializers[] = $callback; |
||
111 | } |
||
112 | |||
113 | /** |
||
114 | * 清空初始化器 |
||
115 | */ |
||
116 | public static function flushInit() |
||
117 | { |
||
118 | static::$initializers = []; |
||
119 | } |
||
120 | |||
121 | /** |
||
122 | * 初始化 |
||
123 | */ |
||
124 | protected function initialize(): void |
||
125 | { |
||
126 | foreach (static::$initializers as $initialize) { |
||
127 | $initialize($this); |
||
128 | } |
||
129 | } |
||
130 | |||
131 | /** |
||
132 | * 设置执行用户 |
||
133 | * @param $user |
||
134 | */ |
||
135 | protected function setUser(string $user): void |
||
136 | { |
||
137 | if (function_exists('posix_getpwnam')) { |
||
138 | $user = posix_getpwnam($user); |
||
139 | |||
140 | if (!empty($user)) { |
||
141 | posix_setuid($user['uid']); |
||
142 | posix_setgid($user['gid']); |
||
143 | } |
||
144 | } |
||
145 | } |
||
146 | |||
147 | /** |
||
148 | * 加载指令 |
||
149 | * @access protected |
||
150 | */ |
||
151 | protected function loadCommands(): void |
||
152 | { |
||
153 | //加载默认指令 |
||
154 | $this->addCommands($this->defaultCommands); |
||
155 | |||
156 | $commands = $this->app->config->get('console.commands', []); |
||
157 | |||
158 | $this->addCommands($commands); |
||
159 | } |
||
160 | |||
161 | /** |
||
162 | * @access public |
||
163 | * @param string $command |
||
164 | * @param array $parameters |
||
165 | * @param string $driver |
||
166 | * @return Output|Buffer |
||
167 | */ |
||
168 | public function call(string $command, array $parameters = [], string $driver = 'buffer') |
||
169 | { |
||
170 | array_unshift($parameters, $command); |
||
171 | |||
172 | $input = new Input($parameters); |
||
173 | $output = new Output($driver); |
||
174 | |||
175 | $this->setCatchExceptions(false); |
||
176 | $this->find($command)->run($input, $output); |
||
177 | |||
178 | return $output; |
||
179 | } |
||
180 | |||
181 | /** |
||
182 | * 执行当前的指令 |
||
183 | * @access public |
||
184 | * @return int |
||
185 | * @throws \Exception |
||
186 | * @api |
||
187 | */ |
||
188 | public function run() |
||
189 | { |
||
190 | $input = new Input(); |
||
191 | $output = new Output(); |
||
192 | |||
193 | $this->configureIO($input, $output); |
||
194 | |||
195 | try { |
||
196 | $exitCode = $this->doRun($input, $output); |
||
197 | } catch (\Exception $e) { |
||
198 | if (!$this->catchExceptions) { |
||
199 | throw $e; |
||
200 | } |
||
201 | |||
202 | $output->renderException($e); |
||
203 | |||
204 | $exitCode = $e->getCode(); |
||
205 | if (is_numeric($exitCode)) { |
||
206 | $exitCode = (int) $exitCode; |
||
207 | if (0 === $exitCode) { |
||
208 | $exitCode = 1; |
||
209 | } |
||
210 | } else { |
||
211 | $exitCode = 1; |
||
212 | } |
||
213 | } |
||
214 | |||
215 | if ($this->autoExit) { |
||
216 | if ($exitCode > 255) { |
||
217 | $exitCode = 255; |
||
218 | } |
||
219 | |||
220 | exit($exitCode); |
||
221 | } |
||
222 | |||
223 | return $exitCode; |
||
224 | } |
||
225 | |||
226 | /** |
||
227 | * 执行指令 |
||
228 | * @access public |
||
229 | * @param Input $input |
||
230 | * @param Output $output |
||
231 | * @return int |
||
232 | */ |
||
233 | public function doRun(Input $input, Output $output) |
||
234 | { |
||
235 | if (true === $input->hasParameterOption(['--version', '-V'])) { |
||
236 | $output->writeln($this->getLongVersion()); |
||
237 | |||
238 | return 0; |
||
239 | } |
||
240 | |||
241 | $name = $this->getCommandName($input); |
||
242 | |||
243 | if (true === $input->hasParameterOption(['--help', '-h'])) { |
||
244 | if (!$name) { |
||
245 | $name = 'help'; |
||
246 | $input = new Input(['help']); |
||
247 | } else { |
||
248 | $this->wantHelps = true; |
||
249 | } |
||
250 | } |
||
251 | |||
252 | if (!$name) { |
||
253 | $name = $this->defaultCommand; |
||
254 | $input = new Input([$this->defaultCommand]); |
||
255 | } |
||
256 | |||
257 | $command = $this->find($name); |
||
258 | |||
259 | return $this->doRunCommand($command, $input, $output); |
||
260 | } |
||
261 | |||
262 | /** |
||
263 | * 设置输入参数定义 |
||
264 | * @access public |
||
265 | * @param InputDefinition $definition |
||
266 | */ |
||
267 | public function setDefinition(InputDefinition $definition) |
||
268 | { |
||
269 | $this->definition = $definition; |
||
270 | } |
||
271 | |||
272 | /** |
||
273 | * 获取输入参数定义 |
||
274 | * @access public |
||
275 | * @return InputDefinition The InputDefinition instance |
||
276 | */ |
||
277 | public function getDefinition() |
||
278 | { |
||
279 | return $this->definition; |
||
280 | } |
||
281 | |||
282 | /** |
||
283 | * Gets the help message. |
||
284 | * @access public |
||
285 | * @return string A help message. |
||
286 | */ |
||
287 | public function getHelp() |
||
290 | } |
||
291 | |||
292 | /** |
||
293 | * 是否捕获异常 |
||
294 | * @access public |
||
295 | * @param bool $boolean |
||
296 | * @api |
||
297 | */ |
||
298 | public function setCatchExceptions(bool $boolean) |
||
299 | { |
||
300 | $this->catchExceptions = $boolean; |
||
301 | } |
||
302 | |||
303 | /** |
||
304 | * 是否自动退出 |
||
305 | * @access public |
||
306 | * @param bool $boolean |
||
307 | * @api |
||
308 | */ |
||
309 | public function setAutoExit(bool $boolean) |
||
310 | { |
||
311 | $this->autoExit = $boolean; |
||
312 | } |
||
313 | |||
314 | /** |
||
315 | * 获取完整的版本号 |
||
316 | * @access public |
||
317 | * @return string |
||
318 | */ |
||
319 | public function getLongVersion() |
||
320 | { |
||
321 | if ('UNKNOWN' !== $this->app->getName() && 'UNKNOWN' !== $this->app->version()) { |
||
322 | return sprintf('<info>%s</info> version <comment>%s</comment>', $this->app->getName(), $this->app->version()); |
||
323 | } |
||
324 | |||
325 | return '<info>Console Tool</info>'; |
||
326 | } |
||
327 | |||
328 | /** |
||
329 | * 注册一个指令 (便于动态创建指令) |
||
330 | * @access public |
||
331 | * @param string $name 指令名 |
||
332 | * @return Command |
||
333 | */ |
||
334 | public function register(string $name) |
||
337 | } |
||
338 | |||
339 | /** |
||
340 | * 添加指令集 |
||
341 | * @access public |
||
342 | * @param array $commands |
||
343 | */ |
||
344 | public function addCommands(array $commands) |
||
345 | { |
||
350 | } |
||
351 | } |
||
352 | } |
||
353 | |||
354 | /** |
||
355 | * 添加一个指令 |
||
356 | * @access public |
||
357 | * @param string|Command $command 指令对象或者指令类名 |
||
358 | * @param string $name 指令名 留空则自动获取 |
||
359 | * @return Command|null |
||
360 | */ |
||
361 | public function addCommand($command, string $name = '') |
||
362 | { |
||
363 | if ($name) { |
||
364 | $this->commands[$name] = $command; |
||
365 | return; |
||
366 | } |
||
367 | |||
368 | if (is_string($command)) { |
||
369 | $command = new $command(); |
||
370 | } |
||
371 | |||
372 | $command->setConsole($this); |
||
373 | |||
374 | if (!$command->isEnabled()) { |
||
375 | $command->setConsole(null); |
||
376 | return; |
||
377 | } |
||
378 | |||
379 | $command->setApp($this->app); |
||
380 | |||
381 | if (null === $command->getDefinition()) { |
||
382 | throw new \LogicException(sprintf('Command class "%s" is not correctly initialized. You probably forgot to call the parent constructor.', get_class($command))); |
||
383 | } |
||
384 | |||
385 | $this->commands[$command->getName()] = $command; |
||
386 | |||
387 | foreach ($command->getAliases() as $alias) { |
||
388 | $this->commands[$alias] = $command; |
||
389 | } |
||
390 | |||
391 | return $command; |
||
392 | } |
||
393 | |||
394 | /** |
||
395 | * 获取指令 |
||
396 | * @access public |
||
397 | * @param string $name 指令名称 |
||
398 | * @return Command |
||
399 | * @throws \InvalidArgumentException |
||
400 | */ |
||
401 | public function getCommand(string $name) |
||
402 | { |
||
403 | if (!isset($this->commands[$name])) { |
||
404 | throw new \InvalidArgumentException(sprintf('The command "%s" does not exist.', $name)); |
||
405 | } |
||
406 | |||
407 | $command = $this->commands[$name]; |
||
408 | |||
409 | if (is_string($command)) { |
||
410 | $command = new $command(); |
||
411 | } |
||
412 | |||
413 | $command->setConsole($this); |
||
414 | |||
415 | if ($this->wantHelps) { |
||
416 | $this->wantHelps = false; |
||
417 | |||
418 | /** @var HelpCommand $helpCommand */ |
||
419 | $helpCommand = $this->getCommand('help'); |
||
420 | $helpCommand->setCommand($command); |
||
421 | |||
422 | return $helpCommand; |
||
423 | } |
||
424 | |||
425 | return $command; |
||
426 | } |
||
427 | |||
428 | /** |
||
429 | * 某个指令是否存在 |
||
430 | * @access public |
||
431 | * @param string $name 指令名称 |
||
432 | * @return bool |
||
433 | */ |
||
434 | public function hasCommand(string $name) |
||
435 | { |
||
436 | return isset($this->commands[$name]); |
||
437 | } |
||
438 | |||
439 | /** |
||
440 | * 获取所有的命名空间 |
||
441 | * @access public |
||
442 | * @return array |
||
443 | */ |
||
444 | public function getNamespaces() |
||
445 | { |
||
446 | $namespaces = []; |
||
447 | foreach ($this->commands as $command) { |
||
448 | if (is_string($command)) { |
||
449 | $namespaces[] = $command; |
||
450 | } else { |
||
451 | $namespaces = array_merge($namespaces, $this->extractAllNamespaces($command->getName())); |
||
452 | |||
453 | foreach ($command->getAliases() as $alias) { |
||
454 | $namespaces = array_merge($namespaces, $this->extractAllNamespaces($alias)); |
||
455 | } |
||
456 | } |
||
457 | } |
||
458 | |||
459 | return array_values(array_unique(array_filter($namespaces))); |
||
460 | } |
||
461 | |||
462 | /** |
||
463 | * 查找注册命名空间中的名称或缩写。 |
||
464 | * @access public |
||
465 | * @param string $namespace |
||
466 | * @return string |
||
467 | * @throws \InvalidArgumentException |
||
468 | */ |
||
469 | public function findNamespace(string $namespace) |
||
470 | { |
||
471 | $allNamespaces = $this->getNamespaces(); |
||
472 | $expr = preg_replace_callback('{([^:]+|)}', function ($matches) { |
||
473 | return preg_quote($matches[1]) . '[^:]*'; |
||
474 | }, $namespace); |
||
475 | $namespaces = preg_grep('{^' . $expr . '}', $allNamespaces); |
||
476 | |||
477 | if (empty($namespaces)) { |
||
478 | $message = sprintf('There are no commands defined in the "%s" namespace.', $namespace); |
||
479 | |||
480 | if ($alternatives = $this->findAlternatives($namespace, $allNamespaces)) { |
||
481 | if (1 == count($alternatives)) { |
||
482 | $message .= "\n\nDid you mean this?\n "; |
||
483 | } else { |
||
484 | $message .= "\n\nDid you mean one of these?\n "; |
||
485 | } |
||
486 | |||
487 | $message .= implode("\n ", $alternatives); |
||
488 | } |
||
489 | |||
490 | throw new \InvalidArgumentException($message); |
||
491 | } |
||
492 | |||
493 | $exact = in_array($namespace, $namespaces, true); |
||
494 | if (count($namespaces) > 1 && !$exact) { |
||
495 | throw new \InvalidArgumentException(sprintf('The namespace "%s" is ambiguous (%s).', $namespace, $this->getAbbreviationSuggestions(array_values($namespaces)))); |
||
496 | } |
||
497 | |||
498 | return $exact ? $namespace : reset($namespaces); |
||
499 | } |
||
500 | |||
501 | /** |
||
502 | * 查找指令 |
||
503 | * @access public |
||
504 | * @param string $name 名称或者别名 |
||
505 | * @return Command |
||
506 | * @throws \InvalidArgumentException |
||
507 | */ |
||
508 | public function find(string $name) |
||
509 | { |
||
510 | $allCommands = array_keys($this->commands); |
||
511 | |||
512 | $expr = preg_replace_callback('{([^:]+|)}', function ($matches) { |
||
513 | return preg_quote($matches[1]) . '[^:]*'; |
||
514 | }, $name); |
||
515 | |||
516 | $commands = preg_grep('{^' . $expr . '}', $allCommands); |
||
517 | |||
518 | if (empty($commands) || count(preg_grep('{^' . $expr . '$}', $commands)) < 1) { |
||
519 | if (false !== $pos = strrpos($name, ':')) { |
||
520 | $this->findNamespace(substr($name, 0, $pos)); |
||
521 | } |
||
522 | |||
523 | $message = sprintf('Command "%s" is not defined.', $name); |
||
524 | |||
525 | if ($alternatives = $this->findAlternatives($name, $allCommands)) { |
||
526 | if (1 == count($alternatives)) { |
||
527 | $message .= "\n\nDid you mean this?\n "; |
||
528 | } else { |
||
529 | $message .= "\n\nDid you mean one of these?\n "; |
||
530 | } |
||
531 | $message .= implode("\n ", $alternatives); |
||
532 | } |
||
533 | |||
534 | throw new \InvalidArgumentException($message); |
||
535 | } |
||
536 | |||
537 | $exact = in_array($name, $commands, true); |
||
538 | if (count($commands) > 1 && !$exact) { |
||
539 | $suggestions = $this->getAbbreviationSuggestions(array_values($commands)); |
||
540 | |||
541 | throw new \InvalidArgumentException(sprintf('Command "%s" is ambiguous (%s).', $name, $suggestions)); |
||
542 | } |
||
543 | |||
544 | return $this->getCommand($exact ? $name : reset($commands)); |
||
545 | } |
||
546 | |||
547 | /** |
||
548 | * 获取所有的指令 |
||
549 | * @access public |
||
550 | * @param string $namespace 命名空间 |
||
551 | * @return Command[] |
||
552 | * @api |
||
553 | */ |
||
554 | public function all(string $namespace = null) |
||
555 | { |
||
556 | if (null === $namespace) { |
||
557 | return $this->commands; |
||
558 | } |
||
559 | |||
560 | $commands = []; |
||
561 | foreach ($this->commands as $name => $command) { |
||
562 | if ($this->extractNamespace($name, substr_count($namespace, ':') + 1) === $namespace) { |
||
563 | $commands[$name] = $command; |
||
564 | } |
||
565 | } |
||
566 | |||
567 | return $commands; |
||
568 | } |
||
569 | |||
570 | /** |
||
571 | * 获取可能的指令名 |
||
572 | * @access public |
||
573 | * @param array $names |
||
574 | * @return array |
||
575 | */ |
||
576 | public static function getAbbreviations(array $names) |
||
577 | { |
||
578 | $abbrevs = []; |
||
579 | foreach ($names as $name) { |
||
580 | for ($len = strlen($name); $len > 0; --$len) { |
||
581 | $abbrev = substr($name, 0, $len); |
||
582 | $abbrevs[$abbrev][] = $name; |
||
583 | } |
||
584 | } |
||
585 | |||
586 | return $abbrevs; |
||
587 | } |
||
588 | |||
589 | /** |
||
590 | * 配置基于用户的参数和选项的输入和输出实例。 |
||
591 | * @access protected |
||
592 | * @param Input $input 输入实例 |
||
593 | * @param Output $output 输出实例 |
||
594 | */ |
||
595 | protected function configureIO(Input $input, Output $output) |
||
596 | { |
||
597 | if (true === $input->hasParameterOption(['--ansi'])) { |
||
598 | $output->setDecorated(true); |
||
599 | } elseif (true === $input->hasParameterOption(['--no-ansi'])) { |
||
600 | $output->setDecorated(false); |
||
601 | } |
||
602 | |||
603 | if (true === $input->hasParameterOption(['--no-interaction', '-n'])) { |
||
604 | $input->setInteractive(false); |
||
605 | } |
||
606 | |||
607 | if (true === $input->hasParameterOption(['--quiet', '-q'])) { |
||
608 | $output->setVerbosity(Output::VERBOSITY_QUIET); |
||
609 | } elseif ($input->hasParameterOption('-vvv') || $input->hasParameterOption('--verbose=3') || $input->getParameterOption('--verbose') === 3) { |
||
610 | $output->setVerbosity(Output::VERBOSITY_DEBUG); |
||
611 | } elseif ($input->hasParameterOption('-vv') || $input->hasParameterOption('--verbose=2') || $input->getParameterOption('--verbose') === 2) { |
||
612 | $output->setVerbosity(Output::VERBOSITY_VERY_VERBOSE); |
||
613 | } elseif ($input->hasParameterOption('-v') || $input->hasParameterOption('--verbose=1') || $input->hasParameterOption('--verbose') || $input->getParameterOption('--verbose')) { |
||
614 | $output->setVerbosity(Output::VERBOSITY_VERBOSE); |
||
615 | } |
||
616 | } |
||
617 | |||
618 | /** |
||
619 | * 执行指令 |
||
620 | * @access protected |
||
621 | * @param Command $command 指令实例 |
||
622 | * @param Input $input 输入实例 |
||
623 | * @param Output $output 输出实例 |
||
624 | * @return int |
||
625 | * @throws \Exception |
||
626 | */ |
||
627 | protected function doRunCommand(Command $command, Input $input, Output $output) |
||
628 | { |
||
629 | return $command->run($input, $output); |
||
630 | } |
||
631 | |||
632 | /** |
||
633 | * 获取指令的基础名称 |
||
634 | * @access protected |
||
635 | * @param Input $input |
||
636 | * @return string |
||
637 | */ |
||
638 | protected function getCommandName(Input $input) |
||
639 | { |
||
640 | return $input->getFirstArgument(); |
||
641 | } |
||
642 | |||
643 | /** |
||
644 | * 获取默认输入定义 |
||
645 | * @access protected |
||
646 | * @return InputDefinition |
||
647 | */ |
||
648 | protected function getDefaultInputDefinition() |
||
649 | { |
||
650 | return new InputDefinition([ |
||
651 | new InputArgument('command', InputArgument::REQUIRED, 'The command to execute'), |
||
652 | new InputOption('--help', '-h', InputOption::VALUE_NONE, 'Display this help message'), |
||
653 | new InputOption('--version', '-V', InputOption::VALUE_NONE, 'Display this console version'), |
||
654 | new InputOption('--quiet', '-q', InputOption::VALUE_NONE, 'Do not output any message'), |
||
655 | new InputOption('--verbose', '-v|vv|vvv', InputOption::VALUE_NONE, 'Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug'), |
||
656 | new InputOption('--ansi', '', InputOption::VALUE_NONE, 'Force ANSI output'), |
||
657 | new InputOption('--no-ansi', '', InputOption::VALUE_NONE, 'Disable ANSI output'), |
||
658 | new InputOption('--no-interaction', '-n', InputOption::VALUE_NONE, 'Do not ask any interactive question'), |
||
659 | ]); |
||
660 | } |
||
661 | |||
662 | /** |
||
663 | * 获取可能的建议 |
||
664 | * @access private |
||
665 | * @param array $abbrevs |
||
666 | * @return string |
||
667 | */ |
||
668 | private function getAbbreviationSuggestions(array $abbrevs) |
||
669 | { |
||
670 | return sprintf('%s, %s%s', $abbrevs[0], $abbrevs[1], count($abbrevs) > 2 ? sprintf(' and %d more', count($abbrevs) - 2) : ''); |
||
671 | } |
||
672 | |||
673 | /** |
||
674 | * 返回命名空间部分 |
||
675 | * @access public |
||
676 | * @param string $name 指令 |
||
677 | * @param int $limit 部分的命名空间的最大数量 |
||
678 | * @return string |
||
679 | */ |
||
680 | public function extractNamespace(string $name, int $limit = 0) |
||
681 | { |
||
682 | $parts = explode(':', $name); |
||
683 | array_pop($parts); |
||
684 | |||
685 | return implode(':', 0 === $limit ? $parts : array_slice($parts, 0, $limit)); |
||
686 | } |
||
687 | |||
688 | /** |
||
689 | * 查找可替代的建议 |
||
690 | * @access private |
||
691 | * @param string $name |
||
692 | * @param array|\Traversable $collection |
||
693 | * @return array |
||
694 | */ |
||
695 | private function findAlternatives(string $name, $collection) |
||
737 | } |
||
738 | |||
739 | /** |
||
740 | * 返回所有的命名空间 |
||
741 | * @access private |
||
742 | * @param string $name |
||
743 | * @return array |
||
744 | */ |
||
745 | private function extractAllNamespaces(string $name) |
||
746 | { |
||
747 | $parts = explode(':', $name, -1); |
||
748 | $namespaces = []; |
||
749 | |||
750 | foreach ($parts as $part) { |
||
751 | if (count($namespaces)) { |
||
762 |