Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 5... Línea 5...
5
namespace OpenSpout\Common\Helper;
5
namespace OpenSpout\Common\Helper;
Línea 6... Línea 6...
6
 
6
 
7
/**
7
/**
8
 * @internal
8
 * @internal
9
 */
9
 */
10
final class StringHelper
10
final readonly class StringHelper
11
{
11
{
12
    /** @var bool Whether the mbstring extension is loaded */
12
    /** @var bool Whether the mbstring extension is loaded */
Línea 13... Línea 13...
13
    private readonly bool $hasMbstringSupport;
13
    private bool $hasMbstringSupport;
14
 
14
 
15
    public function __construct(bool $hasMbstringSupport)
15
    public function __construct(bool $hasMbstringSupport)
16
    {
16
    {