diff --git a/src/Symfony/Component/Workflow/Event/TransitionEvent.php b/src/Symfony/Component/Workflow/Event/TransitionEvent.php deleted file mode 100644 index 1fe0e2ff96..0000000000 --- a/src/Symfony/Component/Workflow/Event/TransitionEvent.php +++ /dev/null @@ -1,30 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Symfony\Component\Workflow\Event; - -/** - * @author Fabien Potencier - */ -class TransitionEvent extends Event -{ - private $nextState; - - public function setNextState($state) - { - $this->nextState = $state; - } - - public function getNextState() - { - return $this->nextState; - } -}