@@ 347-353 (lines=7) @@ | ||
344 | return $this->getHooks($names, self::INTERACT, $annotationData); |
|
345 | } |
|
346 | ||
347 | protected function getValidators($names, AnnotationData $annotationData) |
|
348 | { |
|
349 | return array_merge( |
|
350 | $this->getHooks($names, self::ARGUMENT_VALIDATOR, $annotationData), |
|
351 | $this->getHooks($names, self::COMMAND_HOOK, $annotationData, ['pre-', '']) |
|
352 | ); |
|
353 | } |
|
354 | ||
355 | protected function getProcessResultHooks($names, AnnotationData $annotationData) |
|
356 | { |
|
@@ 355-361 (lines=7) @@ | ||
352 | ); |
|
353 | } |
|
354 | ||
355 | protected function getProcessResultHooks($names, AnnotationData $annotationData) |
|
356 | { |
|
357 | return array_merge( |
|
358 | $this->getHooks($names, self::COMMAND_HOOK, $annotationData, ['post-']), |
|
359 | $this->getHooks($names, self::PROCESS_RESULT, $annotationData) |
|
360 | ); |
|
361 | } |
|
362 | ||
363 | protected function getAlterResultHooks($names, AnnotationData $annotationData) |
|
364 | { |