Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 3571324e8fb9c2ddf62cd666a87e3466 > files > 126

php-apc-3.1.15-4.19.mga4.x86_64.rpm

<?php

namespace Symfony\Component\EventDispatcher;

class Event
{
    private $propagationStopped = false;
    private $dispatcher;
    private $name;

    public function isPropagationStopped()
    {
        return $this->propagationStopped;
    }

    public function stopPropagation()
    {
        $this->propagationStopped = true;
    }

    public function setDispatcher(EventDispatcher $dispatcher)
    {
        $this->dispatcher = $dispatcher;
    }

    public function getDispatcher()
    {
        return $this->dispatcher;
    }

    public function getName()
    {
        return $this->name;
    }

    public function setName($name)
    {
        $this->name = $name;
    }
}