View file PDFXpress/dompdf/src/Css/Content/ContentPart.php

File size: 167B
<?php
namespace Dompdf\Css\Content;

abstract class ContentPart
{
    public function equals(self $other): bool
    {
        return $other instanceof static;
    }
}