Preview: Comment.php
Size: 430 B
/opt/cpanel/ea-wappspector/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/Comment.php
<?php declare(strict_types = 1);
namespace SlevomatCodingStandard\Helpers;
/**
* @internal
*/
class Comment
{
private int $pointer;
private string $content;
public function __construct(int $pointer, string $content)
{
$this->pointer = $pointer;
$this->content = $content;
}
public function getPointer(): int
{
return $this->pointer;
}
public function getContent(): string
{
return $this->content;
}
}
Directory Contents
Dirs: 0 × Files: 41