Page MenuHomeWickedGov Phorge

ReplaceResult.php
No OneTemporary

Size
742 B
Referenced Files
None
Subscribers
None

ReplaceResult.php

<?php
/*
* This file is part of composer/pcre.
*
* (c) Composer <https://github.com/composer>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace Composer\Pcre;
final class ReplaceResult
{
/**
* @readonly
* @var string
*/
public $result;
/**
* @readonly
* @var 0|positive-int
*/
public $count;
/**
* @readonly
* @var bool
*/
public $matched;
/**
* @param 0|positive-int $count
*/
public function __construct(int $count, string $result)
{
$this->count = $count;
$this->matched = (bool) $count;
$this->result = $result;
}
}

File Metadata

Mime Type
text/x-php
Expires
Sat, May 16, 19:54 (4 h, 50 s)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
92/3e/b672d72b07fe55ec9bfcad532dd1
Default Alt Text
ReplaceResult.php (742 B)

Event Timeline