===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
php-oscarotero-gettext-4.8.2/README.md-353---------- | -----------
php-oscarotero-gettext-4.8.2/README.md:354:`Merge::ADD` | Adds the translations from `$translations2` that are missing
php-oscarotero-gettext-4.8.2/README.md:355:`Merge::REMOVE` | Removes the translations missing in `$translations2`
php-oscarotero-gettext-4.8.2/README.md:356:`Merge::HEADERS_ADD` | Adds the headers from `$translations2` that are missing
php-oscarotero-gettext-4.8.2/README.md:357:`Merge::HEADERS_REMOVE` | Removes the headers missing in `$translations2`
php-oscarotero-gettext-4.8.2/README.md:358:`Merge::HEADERS_OVERRIDE` | Overrides the headers with the values of `$translations2`
php-oscarotero-gettext-4.8.2/README.md:359:`Merge::LANGUAGE_OVERRIDE` | Set the language defined in `$translations2`
php-oscarotero-gettext-4.8.2/README.md:360:`Merge::DOMAIN_OVERRIDE` | Set the domain defined in `$translations2`
php-oscarotero-gettext-4.8.2/README.md:361:`Merge::TRANSLATION_OVERRIDE` | Override the translation and plural translations with the value of `$translation2`
php-oscarotero-gettext-4.8.2/README.md:362:`Merge::COMMENTS_OURS` | Use only the comments of `$translation1`
php-oscarotero-gettext-4.8.2/README.md:363:`Merge::COMMENTS_THEIRS` | Use only the comments of `$translation2`
php-oscarotero-gettext-4.8.2/README.md:364:`Merge::EXTRACTED_COMMENTS_OURS` | Use only the extracted comments of `$translation1`
php-oscarotero-gettext-4.8.2/README.md:365:`Merge::EXTRACTED_COMMENTS_THEIRS` | Use only the extracted comments of `$translation2`
php-oscarotero-gettext-4.8.2/README.md:366:`Merge::FLAGS_OURS` | Use only the flags of `$translation1`
php-oscarotero-gettext-4.8.2/README.md:367:`Merge::FLAGS_THEIRS` | Use only the flags of `$translation2`
php-oscarotero-gettext-4.8.2/README.md:368:`Merge::REFERENCES_OURS` | Use only the references of `$translation1`
php-oscarotero-gettext-4.8.2/README.md:369:`Merge::REFERENCES_THEIRS` | Use only the references of `$translation2`
php-oscarotero-gettext-4.8.2/README.md-370-
##############################################
php-oscarotero-gettext-4.8.2/README.md-382-
php-oscarotero-gettext-4.8.2/README.md:383://Merge the translations from the po file using the references from `$phpTranslations`:
php-oscarotero-gettext-4.8.2/README.md-384-$translations->mergeWith($poTranslations, Merge::REFERENCES_OURS);
##############################################
php-oscarotero-gettext-4.8.2/src/Extractors/Blade.php-20-            $cachePath = empty($options['cachePath']) ? sys_get_temp_dir() : $options['cachePath'];
php-oscarotero-gettext-4.8.2/src/Extractors/Blade.php:21:            $bladeCompiler = new BladeCompiler(new Filesystem(), $cachePath);
php-oscarotero-gettext-4.8.2/src/Extractors/Blade.php-22-            $string = $bladeCompiler->compileString($string);
##############################################
php-oscarotero-gettext-4.8.2/src/Extractors/PhpArray.php-21-        foreach (static::getFiles($file) as $file) {
php-oscarotero-gettext-4.8.2/src/Extractors/PhpArray.php:22:            static::fromArray(include($file), $translations);
php-oscarotero-gettext-4.8.2/src/Extractors/PhpArray.php-23-        }
##############################################
php-oscarotero-gettext-4.8.2/src/Translator.php-212-            $code = static::fixTerseIfs($this->plurals[$domain]['code']);
php-oscarotero-gettext-4.8.2/src/Translator.php:213:            $this->plurals[$domain]['function'] = eval("return function (\$n) { $code };");
php-oscarotero-gettext-4.8.2/src/Translator.php-214-        }