# woocommerce-pos/1.10.19/vendor_prefixed/sabberworm/php-css-parser/src/Parser.php

WCPOS – Point of Sale (POS) plugin for WooCommerce, version 1.10.19. 39 lines.

- Page: https://pluginprobe.com/plugins/woocommerce-pos/1.10.19/code/vendor_prefixed/sabberworm/php-css-parser/src/Parser.php
- Raw: https://pluginprobe.com/plugins/woocommerce-pos/1.10.19/raw/vendor_prefixed/sabberworm/php-css-parser/src/Parser.php
- Modified: 2026-06-09T13:55:26+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/woocommerce-pos/1.10.19/code/vendor_prefixed/sabberworm/php-css-parser/src/Parser.php#L10-L20`.

```php
<?php

declare (strict_types=1);
namespace WCPOS\Vendor\Sabberworm\CSS;

use WCPOS\Vendor\Sabberworm\CSS\CSSList\Document;
use WCPOS\Vendor\Sabberworm\CSS\Parsing\ParserState;
use WCPOS\Vendor\Sabberworm\CSS\Parsing\SourceException;
/**
 * This class parses CSS from text into a data structure.
 */
class Parser
{
    /**
     * @var ParserState
     */
    private $parserState;
    /**
     * @param string $text the complete CSS as text (i.e., usually the contents of a CSS file)
     * @param int<1, max> $lineNumber the line number (starting from 1, not from 0)
     */
    public function __construct(string $text, ?Settings $parserSettings = null, int $lineNumber = 1)
    {
        if ($parserSettings === null) {
            $parserSettings = Settings::create();
        }
        $this->parserState = new ParserState($text, $parserSettings, $lineNumber);
    }
    /**
     * Parses the CSS provided to the constructor and creates a `Document` from it.
     *
     * @throws SourceException
     */
    public function parse() : Document
    {
        return Document::parse($this->parserState);
    }
}

```
