@@ 412-418 (lines=7) @@ | ||
409 | return $this->getHooks($names, self::INTERACT, $annotationData); |
|
410 | } |
|
411 | ||
412 | protected function getValidators($names, AnnotationData $annotationData) |
|
413 | { |
|
414 | return array_merge( |
|
415 | $this->getHooks($names, self::ARGUMENT_VALIDATOR, $annotationData), |
|
416 | $this->getHooks($names, self::COMMAND_HOOK, $annotationData, ['pre-', '']) |
|
417 | ); |
|
418 | } |
|
419 | ||
420 | protected function getProcessResultHooks($names, AnnotationData $annotationData) |
|
421 | { |
|
@@ 420-426 (lines=7) @@ | ||
417 | ); |
|
418 | } |
|
419 | ||
420 | protected function getProcessResultHooks($names, AnnotationData $annotationData) |
|
421 | { |
|
422 | return array_merge( |
|
423 | $this->getHooks($names, self::COMMAND_HOOK, $annotationData, ['post-']), |
|
424 | $this->getHooks($names, self::PROCESS_RESULT, $annotationData) |
|
425 | ); |
|
426 | } |
|
427 | ||
428 | protected function getAlterResultHooks($names, AnnotationData $annotationData) |
|
429 | { |