Skip to content

Commit

Permalink
fix: review to squash
Browse files Browse the repository at this point in the history
  • Loading branch information
Yokann committed Aug 1, 2023
1 parent dd674d8 commit 53a23b1
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/Listener/ConsoleListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,22 @@
*/
class ConsoleListener
{
/** @var EventDispatcherInterface */
/** @var ?EventDispatcherInterface */
protected $eventDispatcher;

/**
* Time when command started
*
* @var float
* @var ?float
*/
protected $startTime;

public function __construct()
{
$this->startTime = null;
$this->eventDispatcher = null;
}

/**
* Define event dispatch
*/
Expand Down

0 comments on commit 53a23b1

Please sign in to comment.