[Workflow] Delete dead code

This commit is contained in:
Grégoire Pineau 2017-03-07 18:19:09 +01:00
parent 2ec78c2294
commit 28e85cc32a
1 changed files with 0 additions and 30 deletions

View File

@ -1,30 +0,0 @@
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* 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 <fabien@symfony.com>
*/
class TransitionEvent extends Event
{
private $nextState;
public function setNextState($state)
{
$this->nextState = $state;
}
public function getNextState()
{
return $this->nextState;
}
}