eZ\Publish\Core\SignalSlot\SlotFactory\GeneralSlotFactory::getSlot PHP Метод

getSlot() публичный Метод

Returns a Slot with the given $slotIdentifier.
public getSlot ( string $slotIdentifier ) : Slot
$slotIdentifier string
Результат eZ\Publish\Core\SignalSlot\Slot
    public function getSlot($slotIdentifier)
    {
        if (!isset($this->slots[$slotIdentifier])) {
            throw new NotFoundException('slot', $slotIdentifier);
        }
        return $this->slots[$slotIdentifier];
    }
GeneralSlotFactory