@@ 425-431 (lines=7) @@ | ||
422 | return $this->getHooks($names, self::INTERACT, $annotationData); |
|
423 | } |
|
424 | ||
425 | protected function getValidators($names, AnnotationData $annotationData) |
|
426 | { |
|
427 | return array_merge( |
|
428 | $this->getHooks($names, self::ARGUMENT_VALIDATOR, $annotationData), |
|
429 | $this->getHooks($names, self::COMMAND_HOOK, $annotationData, ['pre-', '']) |
|
430 | ); |
|
431 | } |
|
432 | ||
433 | protected function getProcessResultHooks($names, AnnotationData $annotationData) |
|
434 | { |
|
@@ 433-439 (lines=7) @@ | ||
430 | ); |
|
431 | } |
|
432 | ||
433 | protected function getProcessResultHooks($names, AnnotationData $annotationData) |
|
434 | { |
|
435 | return array_merge( |
|
436 | $this->getHooks($names, self::COMMAND_HOOK, $annotationData, ['post-']), |
|
437 | $this->getHooks($names, self::PROCESS_RESULT, $annotationData) |
|
438 | ); |
|
439 | } |
|
440 | ||
441 | protected function getAlterResultHooks($names, AnnotationData $annotationData) |
|
442 | { |