===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
php-horde-css-parser-1.0.11/Horde_Css_Parser-1.0.11/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/CSSList/CSSBlockList.php-68-					$sComparison = "\$bRes = {$oSelector->getSpecificity()} $sSpecificitySearch;";
php-horde-css-parser-1.0.11/Horde_Css_Parser-1.0.11/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/CSSList/CSSBlockList.php:69:					eval($sComparison);
php-horde-css-parser-1.0.11/Horde_Css_Parser-1.0.11/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/CSSList/CSSBlockList.php-70-					if ($bRes) {
##############################################
php-horde-css-parser-1.0.11/Horde_Css_Parser-1.0.11/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/OutputFormat.php-25-	* Any newline character will be indented according to the current level.
php-horde-css-parser-1.0.11/Horde_Css_Parser-1.0.11/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/OutputFormat.php:26:	* The triples (After, Before, Between) can be set using a wildcard (e.g. `$oFormat->set('Space*Rules', "\n");`)
php-horde-css-parser-1.0.11/Horde_Css_Parser-1.0.11/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/OutputFormat.php-27-	*/
##############################################
php-horde-css-parser-1.0.11/Horde_Css_Parser-1.0.11/bundle/vendor/sabberworm/php-css-parser/CHANGELOG.md-130-
php-horde-css-parser-1.0.11/Horde_Css_Parser-1.0.11/bundle/vendor/sabberworm/php-css-parser/CHANGELOG.md:131:* Support removing a selector from a declaration block using `$oBlock->removeSelector($mSelector)`
php-horde-css-parser-1.0.11/Horde_Css_Parser-1.0.11/bundle/vendor/sabberworm/php-css-parser/CHANGELOG.md-132-* Introduce a specialized exception (Sabberworm\CSS\Parsing\OuputException) for exceptions during output rendering
##############################################
php-horde-css-parser-1.0.11/Horde_Css_Parser-1.0.11/bundle/vendor/sabberworm/php-css-parser/CHANGELOG.md-175-* `Sabberworm\CSS\RuleSet->getRules()` returns an index-based array instead of an associative array. Use `Sabberworm\CSS\RuleSet->getRulesAssoc()` (which eliminates duplicate rules and lets the later rule of the same name win).
php-horde-css-parser-1.0.11/Horde_Css_Parser-1.0.11/bundle/vendor/sabberworm/php-css-parser/CHANGELOG.md:176:* `Sabberworm\CSS\RuleSet->removeRule()` works as it did before except when passed an instance of `Sabberworm\CSS\Rule\Rule`, in which case it would only remove the exact rule given instead of all the rules of the same type. To get the old behaviour, use `Sabberworm\CSS\RuleSet->removeRule($oRule->getRule()`;
php-horde-css-parser-1.0.11/Horde_Css_Parser-1.0.11/bundle/vendor/sabberworm/php-css-parser/CHANGELOG.md-177-
##############################################
php-horde-css-parser-1.0.11/Horde_Css_Parser-1.0.11/bundle/vendor/sabberworm/php-css-parser/README.md-65-
php-horde-css-parser-1.0.11/Horde_Css_Parser-1.0.11/bundle/vendor/sabberworm/php-css-parser/README.md:66:To access the items stored in a `CSSList` – like the document you got back when calling `$oCssParser->parse()` –, use `getContents()`, then iterate over that collection and use instanceof to check whether you’re dealing with another `CSSList`, a `RuleSet`, a `Import` or a `Charset`.
php-horde-css-parser-1.0.11/Horde_Css_Parser-1.0.11/bundle/vendor/sabberworm/php-css-parser/README.md-67-
php-horde-css-parser-1.0.11/Horde_Css_Parser-1.0.11/bundle/vendor/sabberworm/php-css-parser/README.md:68:To append a new item (selector, media query, etc.) to an existing `CSSList`, construct it using the constructor for this class and use the `append($oItem)` method.
php-horde-css-parser-1.0.11/Horde_Css_Parser-1.0.11/bundle/vendor/sabberworm/php-css-parser/README.md-69-
##############################################
php-horde-css-parser-1.0.11/Horde_Css_Parser-1.0.11/bundle/vendor/sabberworm/php-css-parser/README.md-78-
php-horde-css-parser-1.0.11/Horde_Css_Parser-1.0.11/bundle/vendor/sabberworm/php-css-parser/README.md:79:If you want to manipulate a `RuleSet`, use the methods `addRule(Rule $oRule)`, `getRules()` and `removeRule($mRule)` (which accepts either a Rule instance or a rule name; optionally suffixed by a dash to remove all related rules).
php-horde-css-parser-1.0.11/Horde_Css_Parser-1.0.11/bundle/vendor/sabberworm/php-css-parser/README.md-80-
##############################################
php-horde-css-parser-1.0.11/Horde_Css_Parser-1.0.11/bundle/vendor/sabberworm/php-css-parser/README.md-108-
php-horde-css-parser-1.0.11/Horde_Css_Parser-1.0.11/bundle/vendor/sabberworm/php-css-parser/README.md:109:* More convenience methods [like `selectorsWithElement($sId/Class/TagName)`, `attributesOfType($sType)`, `removeAttributesOfType($sType)`]
php-horde-css-parser-1.0.11/Horde_Css_Parser-1.0.11/bundle/vendor/sabberworm/php-css-parser/README.md-110-* Real multibyte support. Currently only multibyte charsets whose first 255 code points take up only one byte and are identical with ASCII are supported (yes, UTF-8 fits this description).