rector/vendor/symplify/easy-parallel/src/Enum/ReactEvent.php
Tomas Votruba 297478ae00 Updated Rector to commit 9e321a11ac21440a33abef87add34945a1490b8f
9e321a11ac [TypeDeclaration] Add PropertyTypeFromStrictSetterGetterRector (#3313)
2023-01-28 16:20:41 +00:00

28 lines
416 B
PHP

<?php
declare (strict_types=1);
namespace RectorPrefix202301\Symplify\EasyParallel\Enum;
/**
* @api
*/
final class ReactEvent
{
/**
* @var string
*/
public const EXIT = 'exit';
/**
* @var string
*/
public const DATA = 'data';
/**
* @var string
*/
public const ERROR = 'error';
/**
* @var string
*/
public const CONNECTION = 'connection';
}