From 28e85cc32af02de8f6348b75f328f095e2ebd89e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Pineau?= Date: Tue, 7 Mar 2017 18:19:09 +0100 Subject: [PATCH] [Workflow] Delete dead code --- .../Workflow/Event/TransitionEvent.php | 30 ------------------- 1 file changed, 30 deletions(-) delete mode 100644 src/Symfony/Component/Workflow/Event/TransitionEvent.php 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; - } -}