Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
php-svg-lib
/
dompdf
/
src
/
Css
/
Content
:
Counters.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Dompdf\Css\Content; final class Counters extends ContentPart { /** * @var string */ public $name; /** * @var string */ public $string; /** * @var string */ public $style; public function __construct(string $name, string $string, string $style) { $this->name = $name; $this->string = $string; $this->style = $style; } public function equals(ContentPart $other): bool { return $other instanceof self && $other->name === $this->name && $other->string === $this->string && $other->style === $this->style; } public function __toString(): string { return "counters($this->name, \"$this->string\", $this->style)"; } }