관리-도구
편집 파일: SampleStoppableEvent.inc
<?php use Psr\EventDispatcher\StoppableEventInterface; class SampleStoppableEvent implements StoppableEventInterface { public function isPropagationStopped(): bool { var_dump(__METHOD__); return true; } }