===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
php-nesbot-carbon-2.32.2/build.php-4-$currentBranch = 'master';
php-nesbot-carbon-2.32.2/build.php:5:if (preg_match('/On branch ([^\n]+)\n/', shell_exec('git status'), $match)) {
php-nesbot-carbon-2.32.2/build.php-6-    $currentBranch = $match[1];
##############################################
php-nesbot-carbon-2.32.2/build.php-16-    return isset($ref[1]) ? $ref[1] : $ref[0];
php-nesbot-carbon-2.32.2/build.php:17:}, array_filter(explode("\n", trim(shell_exec($tagsCommand))), function ($ref) {
php-nesbot-carbon-2.32.2/build.php-18-    return substr($ref, -3) !== '^{}';
##############################################
php-nesbot-carbon-2.32.2/build.php-45-    shell_exec('git stash');
php-nesbot-carbon-2.32.2/build.php:46:    shell_exec("git branch -d $branch");
php-nesbot-carbon-2.32.2/build.php:47:    shell_exec("git checkout tags/$tag -b $branch");
php-nesbot-carbon-2.32.2/build.php-48-    $phpVersion = version_compare($tag, '2.0.0-dev', '<') ? '5.3.9' : '7.1.8';
php-nesbot-carbon-2.32.2/build.php:49:    shell_exec("composer config platform.php $phpVersion");
php-nesbot-carbon-2.32.2/build.php-50-    shell_exec('composer remove friendsofphp/php-cs-fixer --dev');
##############################################
php-nesbot-carbon-2.32.2/build.php-87-    shell_exec('git checkout .');
php-nesbot-carbon-2.32.2/build.php:88:    shell_exec("git checkout $currentBranch");
php-nesbot-carbon-2.32.2/build.php:89:    shell_exec("git branch -d $branch");
php-nesbot-carbon-2.32.2/build.php-90-    shell_exec('git stash pop');
##############################################
php-nesbot-carbon-2.32.2/src/Carbon/CarbonInterface.php-4617-    /**
php-nesbot-carbon-2.32.2/src/Carbon/CarbonInterface.php:4618:     * Translate a time string from the current locale (`$date->locale()`) to an other.
php-nesbot-carbon-2.32.2/src/Carbon/CarbonInterface.php-4619-     *
##############################################
php-nesbot-carbon-2.32.2/src/Carbon/Traits/Localization.php-426-    /**
php-nesbot-carbon-2.32.2/src/Carbon/Traits/Localization.php:427:     * Translate a time string from the current locale (`$date->locale()`) to an other.
php-nesbot-carbon-2.32.2/src/Carbon/Traits/Localization.php-428-     *
##############################################
php-nesbot-carbon-2.32.2/src/Carbon/Traits/Mixin.php-111-        $baseClass = static::class;
php-nesbot-carbon-2.32.2/src/Carbon/Traits/Mixin.php:112:        $context = eval('return new class() extends '.$baseClass.' {use '.$trait.';};');
php-nesbot-carbon-2.32.2/src/Carbon/Traits/Mixin.php-113-        $className = get_class($context);
##############################################
php-nesbot-carbon-2.32.2/tests/Carbon/InstanceTest.php-95-        $serialized = 'return '.var_export($carbon, true).';';
php-nesbot-carbon-2.32.2/tests/Carbon/InstanceTest.php:96:        $deserialized = eval($serialized);
php-nesbot-carbon-2.32.2/tests/Carbon/InstanceTest.php-97-
##############################################
php-nesbot-carbon-2.32.2/tests/CarbonImmutable/InstanceTest.php-96-        $serialized = 'return '.var_export($carbon, true).';';
php-nesbot-carbon-2.32.2/tests/CarbonImmutable/InstanceTest.php:97:        $deserialized = eval($serialized);
php-nesbot-carbon-2.32.2/tests/CarbonImmutable/InstanceTest.php-98-
##############################################
php-nesbot-carbon-2.32.2/tests/Localization/LocalizationTestCase.php-354-                    $test = str_replace('{class}', $class, $test);
php-nesbot-carbon-2.32.2/tests/Localization/LocalizationTestCase.php:355:                    $result = eval("use Carbon\CarbonInterval; return $test;");
php-nesbot-carbon-2.32.2/tests/Localization/LocalizationTestCase.php-356-                    $expected = static::CASES[$index];