← Back
Editing: Emoji.php
<?php declare(strict_types=1); namespace Php\Pie\Util; /** @internal This is not public API for PIE, so should not be depended upon unless you accept the risk of BC breaks */ final class Emoji { public const GREEN_CHECKMARK = '✅'; public const WARNING = '⚠️ '; public const PROHIBITED = '🚫'; public const CROSS = '❌'; }
Save File
Cancel